mirror of
https://github.com/spf13/cobra
synced 2024-11-24 22:57:12 +00:00
checking if a flag is 'private' before adding it to the list of flags; this allows for hidden flags
This commit is contained in:
parent
68f5a81a72
commit
0a7cad51ef
1 changed files with 9 additions and 3 deletions
12
command.go
12
command.go
|
@ -917,12 +917,16 @@ func (c *Command) LocalFlags() *flag.FlagSet {
|
|||
|
||||
local := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
||||
c.lflags.VisitAll(func(f *flag.Flag) {
|
||||
local.AddFlag(f)
|
||||
if !f.Private {
|
||||
local.AddFlag(f)
|
||||
}
|
||||
})
|
||||
if !c.HasParent() {
|
||||
flag.CommandLine.VisitAll(func(f *flag.Flag) {
|
||||
if local.Lookup(f.Name) == nil {
|
||||
local.AddFlag(f)
|
||||
if !f.Private {
|
||||
local.AddFlag(f)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -942,7 +946,9 @@ func (c *Command) InheritedFlags() *flag.FlagSet {
|
|||
if x.HasPersistentFlags() {
|
||||
x.PersistentFlags().VisitAll(func(f *flag.Flag) {
|
||||
if inherited.Lookup(f.Name) == nil && local.Lookup(f.Name) == nil {
|
||||
inherited.AddFlag(f)
|
||||
if !f.Private {
|
||||
inherited.AddFlag(f)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue