Skip to content

Commit

Permalink
Don't pick up .bats/ for shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-schulze-vireso committed Jun 15, 2022
1 parent 92081fb commit 6447096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shellcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ while IFS= read -r -d $'\0'; do
targets+=("$REPLY")
done < <(
find . -type f \( -name \*.bash -o -name \*.sh \) -print0; \
find . -name '*.bats' -not -name '*_no_shellcheck*' -print0; \
find . -type f -name '*.bats' -not -name '*_no_shellcheck*' -print0; \
find libexec -type f -print0;
find bin -type f -print0)

Expand Down

0 comments on commit 6447096

Please sign in to comment.