shellcheck

This commit is contained in:
Mitchell Hashimoto
2026-03-01 06:54:06 -08:00
parent 41870c14ad
commit 7bc44e77d0

View File

@@ -7,9 +7,13 @@
cd "$(dirname "$0")" || exit 1
dirs="${@:-vt-parser-cmin vt-parser-min}"
if [ $# -gt 0 ]; then
set -- "$@"
else
set -- vt-parser-cmin vt-parser-min
fi
for dir in $dirs; do
for dir in "$@"; do
[ -d "$dir" ] || continue
for f in "$dir"/*; do
[ -f "$f" ] || continue