From 73f034c4edd9dfbe78bea45fff7b72452472af21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Tue, 31 May 2016 13:47:50 +0000 Subject: [PATCH] abort on error --- scripts/bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 877a56b..d563951 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1187,15 +1187,15 @@ run autoconf #### Run Configure If User Requires #### if test "$configure" -eq 1; then - ./configure $* + ./configure $* || exit 1 fi #### Run Make If User Requires #### if test "$build" -eq 1; then - make $buildtarget + make $buildtarget || exit 1 fi #### Build In Docker If User Requires #### if test "$docker" -eq 1; then - ./build-in-docker.sh + ./build-in-docker.sh || exit 1 fi