summaryrefslogtreecommitdiff
path: root/bin/strict-bashism-check
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-04-03 14:43:50 +0200
committerErich Eckner <git@eckner.net>2018-04-03 14:43:50 +0200
commit9eda82fa03695514499a965614ad293eaa9bc1c3 (patch)
tree08d09db6a24c01aad3f92d62953bb6d85ab1575d /bin/strict-bashism-check
parentcd5e7986a3fb4625e18bf590b92c290cc499cd7d (diff)
downloadbuilder-9eda82fa03695514499a965614ad293eaa9bc1c3.tar.xz
bin/strict-bashism-check: ignore non-executables in conf/
Diffstat (limited to 'bin/strict-bashism-check')
-rwxr-xr-xbin/strict-bashism-check4
1 files changed, 2 insertions, 2 deletions
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