mirror of https://github.com/docker/cli.git
cli: make cobra templates a const
Saves me from having to look if they're possibly updated/overwritten anywhere in the code. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
b799ab94b8
commit
c388fe4deb
|
@ -426,7 +426,7 @@ func invalidPluginReason(cmd *cobra.Command) string {
|
||||||
return cmd.Annotations[pluginmanager.CommandAnnotationPluginInvalid]
|
return cmd.Annotations[pluginmanager.CommandAnnotationPluginInvalid]
|
||||||
}
|
}
|
||||||
|
|
||||||
var usageTemplate = `Usage:
|
const usageTemplate = `Usage:
|
||||||
|
|
||||||
{{- if not .HasSubCommands}} {{.UseLine}}{{end}}
|
{{- if not .HasSubCommands}} {{.UseLine}}{{end}}
|
||||||
{{- if .HasSubCommands}} {{ .CommandPath}}{{- if .HasAvailableFlags}} [OPTIONS]{{end}} COMMAND{{end}}
|
{{- if .HasSubCommands}} {{ .CommandPath}}{{- if .HasAvailableFlags}} [OPTIONS]{{end}} COMMAND{{end}}
|
||||||
|
@ -525,5 +525,5 @@ Run '{{.CommandPath}} COMMAND --help' for more information on a command.
|
||||||
{{- end}}
|
{{- end}}
|
||||||
`
|
`
|
||||||
|
|
||||||
var helpTemplate = `
|
const helpTemplate = `
|
||||||
{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`
|
{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`
|
||||||
|
|
Loading…
Reference in New Issue