File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
crytic_compile/cryticparser Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,14 @@ def init(parser: ArgumentParser) -> None:
50
50
default = DEFAULTS_FLAG_IN_CONFIG ["ignore_compile" ],
51
51
)
52
52
53
+ group_compile .add_argument (
54
+ "--skip-clean" ,
55
+ help = "Do not attempt to clean before compiling with a platform" ,
56
+ action = "store_true" ,
57
+ dest = "skip_clean" ,
58
+ default = DEFAULTS_FLAG_IN_CONFIG ["skip_clean" ],
59
+ )
60
+
53
61
_init_solc (parser )
54
62
_init_truffle (parser )
55
63
_init_embark (parser )
Original file line number Diff line number Diff line change 36
36
"waffle_config_file" : None ,
37
37
"npx_disable" : False ,
38
38
"ignore_compile" : False ,
39
+ "skip_clean" : False ,
39
40
"buidler_ignore_compile" : False ,
40
41
"buidler_cache_directory" : "cache" ,
41
42
"buidler_skip_directory_name_fix" : False ,
You can’t perform that action at this time.
0 commit comments