Skip to content

Commit 7b5f29e

Browse files
committed
ci(shellcheck): fix exit code propagation (#390)
Return properly the exit code status of shellcheck command when looping through shell script files.
1 parent 8ad4afd commit 7b5f29e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ check_commitlint () {
2828
}
2929

3030
check_shellcheck () {
31-
find . -name "*.sh" -exec shellcheck {} \;
31+
find . -name "*.sh" -exec shellcheck {} \+
3232
}
3333

3434
check_sphinx () {

0 commit comments

Comments
 (0)