From fd232e6f1da0cd714755629376b8f0947597a387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Thu, 25 Jan 2024 12:28:50 +0100 Subject: [PATCH] ci(shellcheck): fix exit code propagation (#122) Return properly the exit code status of shellcheck command when looping through shell script files. --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index 9b92a48..040dbba 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -28,7 +28,7 @@ check_commitlint () { } check_shellcheck () { - find . -name "*.sh" -exec shellcheck {} \; + find . -name "*.sh" -exec shellcheck {} \+ } check_pydocstyle () {