aboutsummaryrefslogtreecommitdiff
path: root/lint/bin.sh
blob: c50a2492ed884c4480e49f5a01bb3063e154eb17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# POSIX shell
set --
for bin in bin/*.sh ; do
    set -- "$@" "${bin%.sh}"
done
shellcheck -e SC1090 -- "$@" || exit
printf 'POSIX shell binscripts linted successfully.\n'

# GNU Bash
if command -v bash >/dev/null 2>&1 ; then
    set --
    for bin in bin/*.bash ; do
        set -- "$@" "${bin%.bash}"
    done
    shellcheck -e SC1090 -- "$@" || exit
    printf 'GNU Bash binscripts linted successfully.\n'
else
    printf 'bash(1) not found, skipping GNU Bash lint.\n'
fi