Skip to content

Commit 88f16bc

Browse files
authored
Move the flags in baseFlags into the global category (#5180)
1 parent 105a03e commit 88f16bc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ironfish-cli/src/flags.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export const VerboseFlag = Flags.boolean({
3434
char: 'v',
3535
default: false,
3636
description: 'Set logging level to verbose',
37+
helpGroup: 'GLOBAL',
3738
})
3839

3940
export const ColorFlag = Flags.boolean({
@@ -45,13 +46,15 @@ export const ColorFlag = Flags.boolean({
4546
export const ConfigFlag = Flags.string({
4647
default: DEFAULT_CONFIG_NAME,
4748
description: 'The name of the config file to use',
49+
helpGroup: 'GLOBAL',
4850
})
4951

5052
export const DataDirFlag = Flags.string({
5153
char: 'd',
5254
default: DEFAULT_DATA_DIR,
5355
description: 'The path to the data dir',
5456
env: 'IRONFISH_DATA_DIR',
57+
helpGroup: 'GLOBAL',
5558
})
5659

5760
export const RpcUseIpcFlag = Flags.boolean({

0 commit comments

Comments
 (0)