From: Willem Toorop Date: Wed, 17 Jul 2019 14:31:07 +0000 (+0200) Subject: Need curly brackets X-Git-Tag: release-1.7.1-rc1~4^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d92fd97aaa4533a16ccbde9f90eebccb752cd90a;p=thirdparty%2Fldns.git Need curly brackets --- diff --git a/test/test_all.sh b/test/test_all.sh index 38571486..df722d2f 100755 --- a/test/test_all.sh +++ b/test/test_all.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # do ldns tests -cd test || echo "Must be executed from srcdir" && exit -1 +cd test || { echo "Must be executed from srcdir"; exit -1 } . common.sh # find tpkg diff --git a/test/test_ci.sh b/test/test_ci.sh index 3a92f645..ac062747 100755 --- a/test/test_ci.sh +++ b/test/test_ci.sh @@ -51,5 +51,5 @@ do $TPKG -b "$BUILD_DIR/test" -a "$BUILD_DIR" exe "$TESTFN" done -cd test || echo "Where is the test directory?" && exit 1 +cd test || { echo "Where is the test directory?"; exit 1 } exec "$TPKG" -n -1 r