aboutsummaryrefslogtreecommitdiff
path: root/lint/bin.sh
blob: db74c3ddec56c3df691caf4c48b785fcdf675100 (plain) (blame)
1
2
3
4
5
6
set --
for sh in bin/*.sh ; do
    set "$@" "${sh%.sh}"
done
shellcheck -e SC1090 -- "$@" || exit
printf 'sh(1) binscripts linted successfully.\n'