acme_extract is being scanned by shellcheck due to permissions differences

This commit is contained in:
NorseGaud 2022-03-02 07:37:25 -05:00
parent 7fe07fc586
commit 58bca91f9c
No known key found for this signature in database
GPG Key ID: FC3D2A556A94E721
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ function _shellcheck
-not -path './target/docker-configomat/*'
)"
# macOS lacks parity for `-executable` but presently produces the same results: https://stackoverflow.com/a/4458361
[[ "$(uname)" == "Darwin" ]] && FIND_EXEC="-perm +111 -type l -or" || FIND_EXEC="-executable"
[[ "$(uname)" == "Darwin" ]] && FIND_EXEC="-perm -711" || FIND_EXEC="-executable"
# shellcheck disable=SC2248
F_BIN="$(find 'target/bin' ${FIND_EXEC} -type f)"
F_BATS="$(find 'test' -maxdepth 1 -type f -iname '*.bats')"