mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #14536 from ethereum/fix-type-inference-shellcheck
Fix type inference shellcheck
This commit is contained in:
commit
9b9ac7f607
@ -214,10 +214,8 @@ EXCLUDE_FILES=(
|
||||
boost_filesystem_bug.sol
|
||||
pragma_experimental_solidity.sol
|
||||
)
|
||||
IMPORT_TEST_FILES=$(find "${TEST_DIRS[@]}" -name "*.sol" -and $(printf "! -name %s " ${EXCLUDE_FILES[@]}) -not -path "*/experimental/*")
|
||||
|
||||
echo $IMPORT_TEST_FILES
|
||||
exit
|
||||
EXCLUDE_FILES_JOINED=$(printf "! -name %s " "${EXCLUDE_FILES[@]}")
|
||||
IMPORT_TEST_FILES=$(find "${TEST_DIRS[@]}" -name "*.sol" -and $EXCLUDE_FILES_JOINED -not -path "*/experimental/*")
|
||||
|
||||
NSOURCES="$(echo "${IMPORT_TEST_FILES}" | wc -l)"
|
||||
echo "Looking at ${NSOURCES} .sol files..."
|
||||
|
Loading…
Reference in New Issue
Block a user