diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-01-29 11:19:11 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-29 11:19:11 +0100 |
commit | 8fc0af71ad23d3b1e1b0a44f97a21b3a69f1f024 (patch) | |
tree | c656ea3a5ff20a69a2f4f485d00e0c46ce8e736b | |
parent | f41007c694b4569ae0b58cdeada00819b9128a69 (diff) | |
download | jenkins.debian.net-8fc0af71ad23d3b1e1b0a44f97a21b3a69f1f024.tar.xz |
chroot-installation: set -e explicitly. this doesnt make sense, but thats the way it is atm
-rwxr-xr-x | bin/chroot-installation.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 8b23ff6e..0d761daa 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -6,6 +6,7 @@ DEBUG=true . /srv/jenkins/bin/common-functions.sh common_init "$@" +set -e # $1 = base distro # $2 = extra component |