@@ -16,33 +16,33 @@ def init(parser: ArgumentParser) -> None:
16
16
parser (ArgumentParser): argparser where the cli flags are added
17
17
"""
18
18
19
- group_solc = parser .add_argument_group ("Compile options" )
19
+ group_compile = parser .add_argument_group ("Compile options" )
20
20
21
21
platforms = get_platforms ()
22
22
23
- group_solc .add_argument (
23
+ group_compile .add_argument (
24
24
"--compile-force-framework" ,
25
25
help = "Force the compile to a given framework "
26
26
f"({ ',' .join ([x .NAME .lower () for x in platforms ])} )" ,
27
27
action = "store" ,
28
28
default = DEFAULTS_FLAG_IN_CONFIG ["compile_force_framework" ],
29
29
)
30
30
31
- group_solc .add_argument (
31
+ group_compile .add_argument (
32
32
"--compile-remove-metadata" ,
33
33
help = "Remove the metadata from the bytecodes" ,
34
34
action = "store_true" ,
35
35
default = DEFAULTS_FLAG_IN_CONFIG ["compile_remove_metadata" ],
36
36
)
37
37
38
- group_solc .add_argument (
38
+ group_compile .add_argument (
39
39
"--compile-custom-build" ,
40
40
help = "Replace platform specific build command" ,
41
41
action = "store" ,
42
42
default = DEFAULTS_FLAG_IN_CONFIG ["compile_custom_build" ],
43
43
)
44
44
45
- group_solc .add_argument (
45
+ group_compile .add_argument (
46
46
"--ignore-compile" ,
47
47
help = "Do not run compile of any platform" ,
48
48
action = "store_true" ,
@@ -232,8 +232,8 @@ def _init_brownie(parser: ArgumentParser) -> None:
232
232
Args:
233
233
parser (ArgumentParser): argparser where the cli flags are added
234
234
"""
235
- group_embark = parser .add_argument_group ("Brownie options" )
236
- group_embark .add_argument (
235
+ group_brownie = parser .add_argument_group ("Brownie options" )
236
+ group_brownie .add_argument (
237
237
"--brownie-ignore-compile" ,
238
238
help = "Do not run brownie compile" ,
239
239
action = "store_true" ,
@@ -465,16 +465,16 @@ def _init_foundry(parser: ArgumentParser) -> None:
465
465
Args:
466
466
parser (ArgumentParser): argparser where the cli flags are added
467
467
"""
468
- group_hardhat = parser .add_argument_group ("foundry options" )
469
- group_hardhat .add_argument (
468
+ group_foundry = parser .add_argument_group ("foundry options" )
469
+ group_foundry .add_argument (
470
470
"--foundry-ignore-compile" ,
471
471
help = "Do not run foundry compile" ,
472
472
action = "store_true" ,
473
473
dest = "foundry_ignore_compile" ,
474
474
default = DEFAULTS_FLAG_IN_CONFIG ["foundry_ignore_compile" ],
475
475
)
476
476
477
- group_hardhat .add_argument (
477
+ group_foundry .add_argument (
478
478
"--foundry-out-directory" ,
479
479
help = "Use an alternative out directory (default: out)" ,
480
480
action = "store" ,
0 commit comments