aboutsummaryrefslogtreecommitdiff
path: root/lint/bin.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lint/bin.sh')
-rw-r--r--lint/bin.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/lint/bin.sh b/lint/bin.sh
index 0fe82d7a..16facb6a 100644
--- a/lint/bin.sh
+++ b/lint/bin.sh
@@ -1 +1,5 @@
-find bin -type f -name '*.sh' -print -exec shellcheck -e SC1090 -s sh -- {} +
+set --
+for sh in bin/*.sh ; do
+ set "$@" "${sh%.sh}"
+done
+shellcheck -e SC1090 -- "$@"