aboutsummaryrefslogtreecommitdiff
path: root/check/bin.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-19 15:40:11 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-19 15:40:11 +1300
commit8a2cac5be2fece7157231904ecff0752308d93c4 (patch)
treea2af3286bebb41428be1e5acbd99c123ecee1d62 /check/bin.sh
parentMerge branch 'release/v3.4.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-40e7381f4eb3c85960ec479854d10389a5134dc0.tar.gz (sig)
dotfiles-40e7381f4eb3c85960ec479854d10389a5134dc0.zip
Merge branch 'release/v3.5.0'v3.5.0
* release/v3.5.0: Bump VERSION Remove diagnostic messages from check/lint scripts
Diffstat (limited to 'check/bin.sh')
-rw-r--r--check/bin.sh4
1 files changed, 0 insertions, 4 deletions
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