From: Martin Matuska Date: Thu, 17 Nov 2016 23:17:31 +0000 (+0100) Subject: Fix return code of ci_build.sh if tests fail with autotools X-Git-Tag: v3.3.0~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=412bae00626f1faa03ebfee41e33a4d69dc613d9;p=thirdparty%2Flibarchive.git Fix return code of ci_build.sh if tests fail with autotools --- diff --git a/build/ci_build.sh b/build/ci_build.sh index c3cf7855b..ff8ef2dab 100755 --- a/build/ci_build.sh +++ b/build/ci_build.sh @@ -91,8 +91,8 @@ for action in ${ACTIONS}; do case "${BUILD_SYSTEM}" in autotools) if ! make ${MAKE_ARGS} check; then - RET="$?" cat test-suite.log + exit 1 fi ;; cmake)