From: Brad Hubbard Date: Thu, 26 Nov 2020 05:30:55 +0000 (+1000) Subject: run-make-check.sh: Make sure a build failure will exit X-Git-Tag: v15.2.8~19^2^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c605d25afeea0b5bd0c94762165f4f94172d7b48;p=ceph.git 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 (cherry picked from commit e70483133db87a3f04bc1fff31d8472465c305b3) Conflicts: run-make-check.sh - Trivial change in logging output --- diff --git a/run-make-check.sh b/run-make-check.sh index 7a0e4790e2e1..88e34655b54d 100755 --- a/run-make-check.sh +++ b/run-make-check.sh @@ -61,7 +61,8 @@ function main() { cmake_opts+=" -DWITH_SEASTAR=ON" fi configure $cmake_opts $@ - build tests && echo "make check: successful run on $(git rev-parse HEAD)" + build tests + echo "make check: successful build on $(git rev-parse HEAD)" run }