From 9eda82fa03695514499a965614ad293eaa9bc1c3 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 3 Apr 2018 14:43:50 +0200 Subject: bin/strict-bashism-check: ignore non-executables in conf/ --- bin/strict-bashism-check | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/strict-bashism-check') 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 -- cgit v1.2.3