aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunichi Uekawa <dancer@netfort.gr.jp>2011-12-31 10:45:29 +0900
committerJunichi Uekawa <dancer@netfort.gr.jp>2011-12-31 10:45:29 +0900
commit163e0751e2066cd24ec4de61f30489b5a21161e8 (patch)
tree203174a71f27946c3e8df1903da80836cad08d11
parent26b0f93188328051356b600d0d36de57026ec277 (diff)
downloadpbuilder-163e0751e2066cd24ec4de61f30489b5a21161e8.tar
pbuilder-163e0751e2066cd24ec4de61f30489b5a21161e8.tar.gz
Bug#644507: pbuilder produces a confusing error message about the dcs filename if it can't read the dsc file.
Make the message say that the file is not found instead of complaining about the validity of file name format, which is irrelevant.
-rwxr-xr-xpbuilder-buildpackage2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-buildpackage b/pbuilder-buildpackage
index 8203268..44ac855 100755
--- a/pbuilder-buildpackage
+++ b/pbuilder-buildpackage
@@ -27,7 +27,7 @@ set -e
PACKAGENAME="$1"
if [ ! -f "$PACKAGENAME" ]; then
- log "E: Command line parameter [$PACKAGENAME] is not a valid .dsc file name"
+ log "E: Command line parameter [$PACKAGENAME] is does not exist"
exit 1;
fi;