From 2ddbdd9d99fd82a0dc111a82533415d30dd1c2b1 Mon Sep 17 00:00:00 2001 From: cytopia Date: Mon, 19 Dec 2022 21:46:59 +0100 Subject: [PATCH] Stash commit --- examples/integration-test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/integration-test.sh b/examples/integration-test.sh index 705055a..a41cd16 100755 --- a/examples/integration-test.sh +++ b/examples/integration-test.sh @@ -13,5 +13,7 @@ for test_dir in $(ls -1 -d */);do echo "${test_dir}" echo "################################################################################" cd "${SCRIPTPATH}/${test_dir}" - ./integration-test.sh + if ! ./integration-test.sh; then + exit 1 + fi done