From cd78e65ebb1dc1b60678f0109424022bea86c5e6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 19 Dec 2018 15:39:55 +1300 Subject: Remove diagnostic messages from check/lint scripts So that `make -s` works nicely. --- check/bin.sh | 4 ---- 1 file changed, 4 deletions(-) (limited to 'check/bin.sh') diff --git a/check/bin.sh b/check/bin.sh index 61b46af8..78c5e57d 100644 --- a/check/bin.sh +++ b/check/bin.sh @@ -2,14 +2,10 @@ for bin in bin/*.sh ; do sh -n -- "${bin%.sh}" || exit done -printf 'POSIX shell binscripts parsed successfully.\n' # GNU Bash if command -v bash >/dev/null 2>&1 ; then for bin in bin/*.bash ; do bash -n -- "${bin%.bash}" || exit done - printf 'GNU Bash binscripts parsed successfully.\n' -else - printf 'bash(1) not found, skipping GNU Bash checks.\n' fi -- cgit v1.2.3