Merge pull request #1565 from remiposo/avoid_duplication_of_help_commands
Fix: Avoid duplication of help commands
This commit is contained in:
commit
e194a18542
2
help.go
2
help.go
@ -246,7 +246,7 @@ func ShowCommandHelp(ctx *Context, command string) error {
|
|||||||
}
|
}
|
||||||
for _, c := range commands {
|
for _, c := range commands {
|
||||||
if c.HasName(command) {
|
if c.HasName(command) {
|
||||||
if !ctx.App.HideHelpCommand && !c.HasName(helpName) && len(c.Subcommands) != 0 {
|
if !ctx.App.HideHelpCommand && !c.HasName(helpName) && len(c.Subcommands) != 0 && c.Command(helpName) == nil {
|
||||||
c.Subcommands = append(c.Subcommands, helpCommandDontUse)
|
c.Subcommands = append(c.Subcommands, helpCommandDontUse)
|
||||||
}
|
}
|
||||||
if !ctx.App.HideHelp && HelpFlag != nil {
|
if !ctx.App.HideHelp && HelpFlag != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user