summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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