Disable shellcheck SC2086

This commit is contained in:
Nikola Matic 2023-09-05 15:14:40 +02:00
parent 9b9ac7f607
commit 2fb668fa47

View File

@ -215,6 +215,7 @@ EXCLUDE_FILES=(
pragma_experimental_solidity.sol
)
EXCLUDE_FILES_JOINED=$(printf "! -name %s " "${EXCLUDE_FILES[@]}")
# shellcheck disable=SC2086
IMPORT_TEST_FILES=$(find "${TEST_DIRS[@]}" -name "*.sol" -and $EXCLUDE_FILES_JOINED -not -path "*/experimental/*")
NSOURCES="$(echo "${IMPORT_TEST_FILES}" | wc -l)"