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 3bb3884..b1bd3bf 100755
--- a/bin/strict-bashism-check
+++ b/bin/strict-bashism-check
@@ -52,7 +52,7 @@ git archive "${tree}" | \
errors=$(
cd "${tmp_dir}" || \
echo 'Cannot cd.'
- find "bin" "conf" -type f -not -executable -not -name '.gitignore'
+ find bin conf lib -type f -not -executable -not -name '.gitignore'
)
if [ -n "${errors}" ]; then
@@ -63,7 +63,7 @@ fi
errors=$(
# shellcheck disable=SC2016
- find bin conf -type f -executable -exec grep -H '="\$(' {} \;
+ find bin conf lib -type f -executable -exec grep -H '="\$(' {} \;
)
if [ -n "${errors}" ]; then