aboutsummaryrefslogtreecommitdiff
path: root/lint/bin.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-19 15:39:55 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-19 15:39:55 +1300
commitcd78e65ebb1dc1b60678f0109424022bea86c5e6 (patch)
treedc7f880a12edab2e978c1e577ff1d80ddf7bed1f /lint/bin.sh
parentMerge branch 'release/v3.4.0' into develop (diff)
downloaddotfiles-cd78e65ebb1dc1b60678f0109424022bea86c5e6.tar.gz
dotfiles-cd78e65ebb1dc1b60678f0109424022bea86c5e6.zip
Remove diagnostic messages from check/lint scripts
So that `make -s` works nicely.
Diffstat (limited to 'lint/bin.sh')
-rw-r--r--lint/bin.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/lint/bin.sh b/lint/bin.sh
index c50a2492..a98c6a73 100644
--- a/lint/bin.sh
+++ b/lint/bin.sh
@@ -4,7 +4,6 @@ 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
@@ -13,7 +12,4 @@ if command -v bash >/dev/null 2>&1 ; then
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