mirror of
https://github.com/status-im/consul.git
synced 2025-01-24 20:51:10 +00:00
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,18 +235,20 @@ func (c *BaseCommand) helpFlagsFor(f *flag.FlagSet) string {
|
||||
})
|
||||
}
|
||||
|
||||
firstCommand := true
|
||||
f.VisitAll(func(f *flag.Flag) {
|
||||
// Skip HTTP flags as they will be grouped separately
|
||||
if flagContains(httpFlagsClient, f) || flagContains(httpFlagsServer, f) || flagContains(c.hidden, f) {
|
||||
return
|
||||
}
|
||||
if firstCommand {
|
||||
printTitle(&out, "Command Options")
|
||||
firstCommand = false
|
||||
}
|
||||
printFlag(&out, f)
|
||||
})
|
||||
if !c.HideNormalFlagsHelp {
|
||||
firstCommand := true
|
||||
f.VisitAll(func(f *flag.Flag) {
|
||||
// Skip HTTP flags as they will be grouped separately
|
||||
if flagContains(httpFlagsClient, f) || flagContains(httpFlagsServer, f) || flagContains(c.hidden, f) {
|
||||
return
|
||||
}
|
||||
if firstCommand {
|
||||
printTitle(&out, "Command Options")
|
||||
firstCommand = false
|
||||
}
|
||||
printFlag(&out, f)
|
||||
})
|
||||
}
|
||||
|
||||
return strings.TrimRight(out.String(), "\n")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user