Don't shellcheck in target/

This commit is contained in:
Michael Vines 2018-07-19 09:35:42 -07:00
parent a67f58e9a5
commit d0a2d46923
1 changed files with 6 additions and 1 deletions

View File

@ -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