From f197b1944b8cc4b66aaa75a01faf28519239f523 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Tue, 7 Nov 2023 10:54:13 +0100 Subject: [PATCH] ci: Fix incorrect exit code The runner wouldn't properly exit with a failure code, so it always looked like success in the UI. --- .ci/util/run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/util/run.sh b/.ci/util/run.sh index 1de3b1c..60c8112 100755 --- a/.ci/util/run.sh +++ b/.ci/util/run.sh @@ -47,4 +47,5 @@ if sh "$script"; then notify 'success' "$context" "$desc" else notify 'failure' "$context" "$desc" + exit 1 fi