Skip to content

Commit

Permalink
Update ci_shellcheck.yml: go 3 levels
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Dec 18, 2024
1 parent e2d2787 commit 6308d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
# check bash files (bash -n, shellcheck -x)
err=0
for i in $(find . -maxdepth 2 -name '*.sh'); do
for i in $(find . -maxdepth 3 -name '*.sh'); do
echo "==================== $i"
bash -n $i
if [ $? -ne 0 ]; then
Expand Down

0 comments on commit 6308d0f

Please sign in to comment.