Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Don't shellcheck in target/
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Jul 19, 2018
1 parent 5550311 commit c4593f3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ci/shellcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
cd "$(dirname "$0")/.."

set -x
find . -name "*.sh" -not -regex ".*/.cargo/.*" -not -regex ".*/node_modules/.*" -print0 \
find . -name "*.sh" \
-not -regex ".*/.cargo/.*" \
-not -regex ".*/node_modules/.*" \
-not -regex ".*/target/.*" \
-print0 \
| xargs -0 \
ci/docker-run.sh koalaman/shellcheck --color=always --external-sources --shell=bash

exit 0

0 comments on commit c4593f3

Please sign in to comment.