Fix type inference shellcheck failure

This commit is contained in:
Nikola Matic 2023-09-05 15:02:38 +02:00
parent c4af926a5d
commit fe8128fa9b

View File

@ -214,10 +214,8 @@ EXCLUDE_FILES=(
boost_filesystem_bug.sol boost_filesystem_bug.sol
pragma_experimental_solidity.sol pragma_experimental_solidity.sol
) )
IMPORT_TEST_FILES=$(find "${TEST_DIRS[@]}" -name "*.sol" -and $(printf "! -name %s " ${EXCLUDE_FILES[@]}) -not -path "*/experimental/*") EXCLUDE_FILES_JOINED=$(printf "! -name %s " "${EXCLUDE_FILES[@]}")
IMPORT_TEST_FILES=$(find "${TEST_DIRS[@]}" -name "*.sol" -and $EXCLUDE_FILES_JOINED -not -path "*/experimental/*")
echo $IMPORT_TEST_FILES
exit
NSOURCES="$(echo "${IMPORT_TEST_FILES}" | wc -l)" NSOURCES="$(echo "${IMPORT_TEST_FILES}" | wc -l)"
echo "Looking at ${NSOURCES} .sol files..." echo "Looking at ${NSOURCES} .sol files..."