Skip to content

Commit

Permalink
Merge pull request #443 from ethereum/filter-kontrol-output-more
Browse files Browse the repository at this point in the history
Solidity: filter more kontrol output
  • Loading branch information
d-xo authored Jan 16, 2024
2 parents 6c876b2 + b2334e7 commit 38750e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EVM/Solidity.hs
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ readBuildOutput root _ = do

-- | Finds all json files under the provided filepath, searches recursively
findJsonFiles :: FilePath -> IO [FilePath]
findJsonFiles root = filter (/= "kompiled/compiled.json") -- HACK: this gets added to `out` by `kontrol`
findJsonFiles root = filter (not . isInfixOf "kompiled") -- HACK: this gets added to `out` by `kontrol`
<$> getDirectoryFiles root ["**/*.json"]

-- | Filters out metadata json files
Expand Down

0 comments on commit 38750e6

Please sign in to comment.