From 1601f3e9b40b8d13b3094ec324e0e0cd625994c9 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 31 Oct 2017 22:31:31 +1300 Subject: Use shell name not command in check/lint messages This is a little bit clearer and nicer to read, I think. --- check/bin.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'check') diff --git a/check/bin.sh b/check/bin.sh index d504961d..08b12778 100644 --- a/check/bin.sh +++ b/check/bin.sh @@ -2,14 +2,14 @@ for bin in bin/*.sh ; do sh -n -- "${bin%.sh}" || exit done -printf 'sh(1) binscripts parsed successfully.\n' +printf 'POSIX sh 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 'bash(1) binscripts parsed successfully.\n' + printf 'GNU Bash binscripts parsed successfully.\n' else - printf 'bash(1) not found, skipping checks.\n' + printf 'bash(1) not found, skipping GNU Bash checks.\n' fi -- cgit v1.2.3