diff options
author | Erich Eckner <git@eckner.net> | 2017-08-24 00:02:04 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-08-24 00:02:04 +0200 |
commit | 832fa561b424e26f6d8c8d1658e8456858aec970 (patch) | |
tree | cd0a6f0c51ae246daf0007bd729df0d24b0e5ef5 /bin/strict-bashism-check | |
parent | a9db8b6d82ff3e43bdfc087cf921cd645edc79e4 (diff) | |
download | builder-832fa561b424e26f6d8c8d1658e8456858aec970.tar.xz |
bin/strict-bashism-check: also shellcheck before commiting
Diffstat (limited to 'bin/strict-bashism-check')
-rwxr-xr-x | bin/strict-bashism-check | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/strict-bashism-check b/bin/strict-bashism-check index 9029471..e477213 100755 --- a/bin/strict-bashism-check +++ b/bin/strict-bashism-check @@ -83,3 +83,15 @@ if [ -n "${errors}" ]; then >&2 echo "${errors}" exit 1 fi + +errors=$( + cd "${tmp_dir}" || \ + echo 'Cannot cd.' + shellcheck -x bin/* conf/* 2>&1 +) + +if [ -n "${errors}" ]; then + >&2 echo 'shellcheck complains about the following:' + >&2 echo "${errors}" + exit 1 +fi |