diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-27 14:55:32 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-27 14:55:32 +0200 |
commit | 10ca283a37541646588b76a90212bc27f23d80da (patch) | |
tree | 6ed5771789965d659b3429211a9a2b678bb2ff66 /bin | |
parent | 239345604c321d41e3517503e81a52eb197bd110 (diff) | |
download | jenkins.debian.net-10ca283a37541646588b76a90212bc27f23d80da.tar.xz |
common-functions: don't exit with 0
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/common-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh index 327cdff7..80a869ab 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -25,7 +25,7 @@ if [ "${0:0:5}" != "/tmp/" ] ; then # anytime...) echo "Start running \"$0\" as \"$TTT\" with arguments \"$@\"" $TTT "$@" - exit 0 # auto cleanup on trap + # auto cleanup on trap else # default settings used for the jenkins.debian.net environment if [ -z "$LC_ALL" ]; then |