diff --git a/ci/shellcheck.sh b/ci/shellcheck.sh index 808e1724c..d8107b629 100755 --- a/ci/shellcheck.sh +++ b/ci/shellcheck.sh @@ -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