aboutsummaryrefslogtreecommitdiffhomepage
path: root/command/help.go
diff options
context:
space:
mode:
Diffstat (limited to 'command/help.go')
-rw-r--r--command/help.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/command/help.go b/command/help.go
index a3735406..cb22ce50 100644
--- a/command/help.go
+++ b/command/help.go
@@ -44,8 +44,10 @@ func (n *node) writeCommands(w io.Writer) error {
if n == nil {
return nil
}
- if _, err := fmt.Fprintf(w, "\t%s\t%s\n", n.name, n.usage); err != nil {
- return err
+ if n.usage != UsageInternal {
+ if _, err := fmt.Fprintf(w, "\t%s\t%s\n", n.name, n.usage); err != nil {
+ return err
+ }
}
return n.next.writeCommands(w)
}