diff options
author | Reto Buerki <reet@codelabs.ch> | 2012-12-09 09:41:54 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-01-17 16:54:54 +0100 |
commit | f241f46d88f06393e8dd4e8f0a9a444c7f9c2059 (patch) | |
tree | 6bd61b6fa5fbb54b9b3a2dda03544d764e62c675 | |
parent | 8ed98c137321c3f92fb06b58e69aaecf4e531cdc (diff) | |
download | strongswan-f241f46d88f06393e8dd4e8f0a9a444c7f9c2059.tar.bz2 strongswan-f241f46d88f06393e8dd4e8f0a9a444c7f9c2059.tar.xz |
Exit make-testing on script failure
-rwxr-xr-x | testing/make-testing | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/make-testing b/testing/make-testing index 3739299ea..7c2e4d567 100755 --- a/testing/make-testing +++ b/testing/make-testing @@ -6,20 +6,20 @@ rm -f $LOGFILE if [ $ENABLE_BUILD_BASEIMAGE = "yes" ] then - $PWD/scripts/build-baseimage + $PWD/scripts/build-baseimage || exit 1 fi if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ] then - $PWD/scripts/build-guestkernel + $PWD/scripts/build-guestkernel || exit 1 fi if [ $ENABLE_BUILD_UMLROOTFS = "yes" ] then - $PWD/scripts/build-umlrootfs + $PWD/scripts/build-umlrootfs || exit 1 fi if [ $ENABLE_BUILD_UMLHOSTFS = "yes" ] then - $PWD/scripts/build-umlhostfs $HOSTS + $PWD/scripts/build-umlhostfs $HOSTS || exit 1 fi |