index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2018-04-03 14:43:50 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-04-03 14:43:50 +0200 |
commit | 9eda82fa03695514499a965614ad293eaa9bc1c3 (patch) | |
tree | 08d09db6a24c01aad3f92d62953bb6d85ab1575d /bin | |
parent | cd5e7986a3fb4625e18bf590b92c290cc499cd7d (diff) |
-rwxr-xr-x | bin/strict-bashism-check | 4 |
diff --git a/bin/strict-bashism-check b/bin/strict-bashism-check index ff1a29a..641d23f 100755 --- a/bin/strict-bashism-check +++ b/bin/strict-bashism-check @@ -55,11 +55,11 @@ if ! cd "${tmp_dir}"; then fi errors=$( - find bin conf lib -type f -not -executable -not -name '.gitignore' + find bin lib -type f -not -executable -not -name '.gitignore' ) if [ -n "${errors}" ]; then - >&2 echo 'Non-executable files found in bin/, conf/ or lib/:' + >&2 echo 'Non-executable files found in bin/ or lib/:' >&2 echo "${errors}" exit 1 fi |