From e70483133db87a3f04bc1fff31d8472465c305b3 Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Thu, 26 Nov 2020 15:30:55 +1000 Subject: [PATCH] run-make-check.sh: Make sure a build failure will exit We 'set -e' but that is ignored because 'build tests' is executed in a '&&' list (see 'man set') so move the echo to the following line. Follow-up to 03ff2146f95 Signed-off-by: Brad Hubbard --- run-make-check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run-make-check.sh b/run-make-check.sh index b23f1221d46..3a7451c54e7 100755 --- a/run-make-check.sh +++ b/run-make-check.sh @@ -64,7 +64,8 @@ function main() { cmake_opts+=" -DWITH_ZBD=ON" fi configure $cmake_opts $@ - build tests && echo "make check: successful build on $(git rev-parse HEAD)" + build tests + echo "make check: successful build on $(git rev-parse HEAD)" run } -- 2.39.5