mirror of https://github.com/spf13/cobra.git
No leading newline if Short and Long both unset
Before --help would start ``` Usage: command [flags] [...] ``` After --help will show ``` Usage: command [flags] [...] ```
This commit is contained in:
parent
42498ec777
commit
717619095e
|
@ -284,8 +284,9 @@ func (c *Command) HelpTemplate() string {
|
|||
if c.HasParent() {
|
||||
return c.parent.HelpTemplate()
|
||||
} else {
|
||||
return `{{with or .Long .Short }}{{. | trim}}{{end}}
|
||||
{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`
|
||||
return `{{with or .Long .Short }}{{. | trim}}
|
||||
|
||||
{{end}}{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue