aboutsummaryrefslogtreecommitdiff
path: root/lint/bin
diff options
context:
space:
mode:
Diffstat (limited to 'lint/bin')
-rwxr-xr-xlint/bin11
1 files changed, 1 insertions, 10 deletions
diff --git a/lint/bin b/lint/bin
index 1130e432..ff7de0b7 100755
--- a/lint/bin
+++ b/lint/bin
@@ -1,11 +1,2 @@
#!/bin/sh
-for bin in bin/* ; do
- [ -f "$bin" ] || continue
- hb=$(sed 1q "$bin") || exit
- case $hb in
- *sh)
- printf '%s\n' "$bin"
- shellcheck -- "$bin"
- ;;
- esac
-done
+find bin -type f -name '*.sh' -print -exec shellcheck -e SC1090 -s sh -- {} +