Unverified Commit 87713c60 authored by Luka Govedič's avatar Luka Govedič Committed by GitHub
Browse files

[CI/Build] Ignore .gitignored files for shellcheck (#10162)


Signed-off-by: default avatarluka <luka@neuralmagic.com>
parent b5815c84
...@@ -18,4 +18,4 @@ if ! [ -x "$(command -v shellcheck)" ]; then ...@@ -18,4 +18,4 @@ if ! [ -x "$(command -v shellcheck)" ]; then
fi fi
# TODO - fix warnings in .buildkite/run-amd-test.sh # TODO - fix warnings in .buildkite/run-amd-test.sh
find . -name "*.sh" -not -path "./.deps/*" -not -path "./.buildkite/run-amd-test.sh" -exec shellcheck {} + find . -name "*.sh" -not -path "./.buildkite/run-amd-test.sh" -exec sh -c 'git check-ignore -q $1 || shellcheck $1' _ {} \;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment