mirror of https://github.com/status-im/consul.git
Add base command option for hiding generated help for normal args
This commit is contained in:
parent
a2997e2823
commit
8b31eef467
|
@ -33,6 +33,8 @@ type BaseCommand struct {
|
|||
UI cli.Ui
|
||||
Flags FlagSetFlags
|
||||
|
||||
HideNormalFlagsHelp bool
|
||||
|
||||
flagSet *flag.FlagSet
|
||||
hidden *flag.FlagSet
|
||||
|
||||
|
@ -233,6 +235,7 @@ func (c *BaseCommand) helpFlagsFor(f *flag.FlagSet) string {
|
|||
})
|
||||
}
|
||||
|
||||
if !c.HideNormalFlagsHelp {
|
||||
firstCommand := true
|
||||
f.VisitAll(func(f *flag.Flag) {
|
||||
// Skip HTTP flags as they will be grouped separately
|
||||
|
@ -245,6 +248,7 @@ func (c *BaseCommand) helpFlagsFor(f *flag.FlagSet) string {
|
|||
}
|
||||
printFlag(&out, f)
|
||||
})
|
||||
}
|
||||
|
||||
return strings.TrimRight(out.String(), "\n")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue