From b4fc8e4c37f92a25342b6367a9a513e253abca1a Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Thu, 14 Nov 2024 23:18:29 -0600 Subject: [PATCH] ci: run shellcheck on all scripts --- ci/style.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/style.sh b/ci/style.sh index 59f8452552b73..131632ff21dd4 100755 --- a/ci/style.sh +++ b/ci/style.sh @@ -11,7 +11,7 @@ rustfmt -V cargo fmt --all -- --check if shellcheck --version ; then - shellcheck ci/*.sh + find . -name '*.sh' -exec shellcheck {} ';' else echo "shellcheck not found" exit 1