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 /pbuilder-runhooks | |
parent | 20c20dce8b0738532ad2aa79bf2d7ac9effe29c1 (diff) | |
download | pbuilder-5ad0c1d38eebdc05f2e0340d9ba6548c6524a60d.tar pbuilder-5ad0c1d38eebdc05f2e0340d9ba6548c6524a60d.tar.gz |
changing the error message to warning, because these messages do not stop execution
Diffstat (limited to 'pbuilder-runhooks')
-rw-r--r-- | pbuilder-runhooks | 9 |
1 files changed, 6 insertions, 3 deletions
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 |