aboutsummaryrefslogtreecommitdiff
path: root/lint
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-31 23:03:47 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-31 23:03:47 +1300
commit87369f1ec9913f48c5902d8e730750b8a9772eba (patch)
tree12dbc9259b1f5393bdb91d8d9a22eaaa9ff0d042 /lint
parentAdd idea and issue regarding checking and linting (diff)
downloaddotfiles-87369f1ec9913f48c5902d8e730750b8a9772eba.tar.gz
dotfiles-87369f1ec9913f48c5902d8e730750b8a9772eba.zip
Correct some vestigial programs to shell names
Just for consistency.
Diffstat (limited to 'lint')
-rw-r--r--lint/bin.sh2
-rw-r--r--lint/games.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/lint/bin.sh b/lint/bin.sh
index d27494dd..6037ca55 100644
--- a/lint/bin.sh
+++ b/lint/bin.sh
@@ -4,7 +4,7 @@ for bin in bin/*.sh ; do
set -- "$@" "${bin%.sh}"
done
shellcheck -e SC1090 -- "$@" || exit
-printf 'POSIX sh binscripts linted successfully.\n'
+printf 'POSIX shell binscripts linted successfully.\n'
# GNU Bash
if command -v bash >/dev/null 2>&1 ; then
diff --git a/lint/games.sh b/lint/games.sh
index 240961af..6d51ba0d 100644
--- a/lint/games.sh
+++ b/lint/games.sh
@@ -4,4 +4,4 @@ for game in games/*.sh ; do
set -- "$@" "${game%.sh}"
done
shellcheck -e SC1090 -- "$@" || exit
-printf 'sh(1) games linted successfully.\n'
+printf 'POSIX shell games linted successfully.\n'