Skip to content

Commit 2d4cf1f

Browse files
committed
adding support for .yml files in brownie projects
1 parent 4d35e4b commit 2d4cf1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crytic_compile/platform/brownie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def is_supported(target: str, **kwargs: str) -> bool:
9595
# >= 1.1.0: brownie-config.yaml
9696
return os.path.isfile(os.path.join(target, "brownie-config.json")) or os.path.isfile(
9797
os.path.join(target, "brownie-config.yaml")
98-
)
98+
) or os.path.isfile(os.path.join(target, "brownie-config.yml"))
9999

100100
def is_dependency(self, _path: str) -> bool:
101101
"""Check if the path is a dependency (not supported for brownie)

0 commit comments

Comments
 (0)