diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | pbuilder-checkparams | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2006-06-11 Junichi Uekawa <dancer@debian.org> + * pbuilder-checkparams: do not error out if buildresult directory + does not exist. + * pbuilder-buildpackage: actually create buildresult dir, the condition was wrong. diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 75e2db5..c7df248 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -81,8 +81,8 @@ while [ -n "$1" ]; do if [ -d "$2" ]; then BUILDRESULT=$(readlink -f "$2"); else - echo "E: Directory $2 does not exist" >&2 - exit 1 + echo "W: Build-result Directory $2 does not exist" >&2 + # warn, but make it progress. fi else BUILDRESULT= |