Instruct shellcheck to follow sourced files

This commit is contained in:
Michael Wolf
2023-09-30 17:32:55 -06:00
parent 358d2a4b14
commit 4c598c589e

View File

@@ -3,5 +3,5 @@
files=$(find . -type f | grep -v '\.git' | grep '\.sh') files=$(find . -type f | grep -v '\.git' | grep '\.sh')
for i in $files; do for i in $files; do
shellcheck "$i" shellcheck -x "$i"
done done