acme_extract -> acme_extract.py + F_BIN to avoid .py

This commit is contained in:
NorseGaud 2022-03-06 21:11:46 -05:00
parent 3be5879fcf
commit 1ab8ea96b2
No known key found for this signature in database
GPG key ID: FC3D2A556A94E721
6 changed files with 4 additions and 4 deletions

View file

@ -99,7 +99,7 @@ function _shellcheck
-not -path './target/docker-configomat/*'
)"
# shellcheck disable=SC2248
F_BIN="$(grep -l /bin/bash target/bin/*)"
F_BIN="$(find 'target/bin' -type f -not -name '*.py')"
F_BATS="$(find 'test' -maxdepth 1 -type f -iname '*.bats')"
# This command is a bit easier to grok as multi-line.