diff options
author | dancer <dancer> | 2001-10-12 16:56:41 +0000 |
---|---|---|
committer | dancer <dancer> | 2001-10-12 16:56:41 +0000 |
commit | 5ad0c1d38eebdc05f2e0340d9ba6548c6524a60d (patch) | |
tree | eb7ac16eb952a249bd0c3ade8982598507a055ae | |
parent | 20c20dce8b0738532ad2aa79bf2d7ac9effe29c1 (diff) | |
download | pbuilder-5ad0c1d38eebdc05f2e0340d9ba6548c6524a60d.tar pbuilder-5ad0c1d38eebdc05f2e0340d9ba6548c6524a60d.tar.gz |
changing the error message to warning, because these messages do not stop execution
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | pbuilder-runhooks | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 731599c..51e1be6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,8 +6,11 @@ pbuilder (0.7.0.20011012) unstable; urgency=low not called a hookdir ... * changed "hooks" variable in pbuilder-runhooks, to not to have a starting "/". It should be unnecessary + * E: messages in pbuilder-runhooks are now "W:" messages, because + even when those errors are detected, they should not really + stop the execution of pbuilder halfway. - -- Junichi Uekawa <dancer@debian.org> Fri, 12 Oct 2001 13:08:39 +0900 + -- Junichi Uekawa <dancer@debian.org> Sat, 13 Oct 2001 01:53:28 +0900 pbuilder (0.7) unstable; urgency=low diff --git a/pbuilder-runhooks b/pbuilder-runhooks index 09cefc6..70cc8d7 100644 --- a/pbuilder-runhooks +++ b/pbuilder-runhooks @@ -18,6 +18,9 @@ # # HISTORY: # $Log$ +# Revision 1.10 2001/10/12 16:56:41 dancer +# changing the error message to warning, because these messages do not stop execution +# # Revision 1.9 2001/10/12 16:31:18 dancer # fixed my logical disorder. # @@ -100,10 +103,10 @@ function executehooks () { for fn in "$BUILDPLACE/$hooks/$prefix"[0-9][0-9]* ; do case "$fn" in *~) - echo "E: skipping an editor backup file $fn" + echo "W: skipping an editor backup file $fn" ;; *.bak) - echo "E: skipping a backup file $fn" + echo "W: skipping a backup file $fn" ;; *) if [ -x $fn ]; then @@ -111,7 +114,7 @@ function executehooks () { echo " -> user script $fn finished" else filetype=$(readlink -f $(basename "$fn" ) ) - echo "E: execute priv not set on file $filetype" + echo "W: execute priv not set on file $filetype, not executing." fi ;; esac |