From 4c598c589ec6a32ae0904c79d1fa2af61d4daa52 Mon Sep 17 00:00:00 2001 From: Michael Wolf Date: Sat, 30 Sep 2023 17:32:55 -0600 Subject: [PATCH] Instruct shellcheck to follow sourced files --- ci/shellcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/shellcheck.sh b/ci/shellcheck.sh index 426d18e..e21d085 100755 --- a/ci/shellcheck.sh +++ b/ci/shellcheck.sh @@ -3,5 +3,5 @@ files=$(find . -type f | grep -v '\.git' | grep '\.sh') for i in $files; do - shellcheck "$i" + shellcheck -x "$i" done