Run shellcheck over all scripts/*.sh files

See #8409
This commit is contained in:
Florian Bruhin 2024-12-06 20:38:52 +01:00
parent a7b566e7b3
commit 5cb14d4d4b
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
set -e
script_list=$(mktemp)
find scripts/dev/ -name '*.sh' > "$script_list"
find scripts/ -name '*.sh' > "$script_list"
find misc/userscripts/ -type f -exec grep -lE '[/ ][bd]ash$|[/ ]sh$|[/ ]ksh$' {} + >> "$script_list"
mapfile -t scripts < "$script_list"
rm -f "$script_list"