mirror of
https://github.com/beego/bee.git
synced 2024-11-22 10:10:53 +00:00
Fixed padding for printing an option
This commit is contained in:
parent
592eac9974
commit
8dca816aac
2
bee.go
2
bee.go
@ -197,7 +197,7 @@ Use {{"bee help [topic]" | bold}} for more information about that topic.
|
|||||||
var helpTemplate = `{{"USAGE" | headline}}
|
var helpTemplate = `{{"USAGE" | headline}}
|
||||||
{{.UsageLine | printf "bee %s" | bold}}
|
{{.UsageLine | printf "bee %s" | bold}}
|
||||||
{{if .Options}}{{endline}}{{"OPTIONS" | headline}}{{range $k,$v := .Options}}
|
{{if .Options}}{{endline}}{{"OPTIONS" | headline}}{{range $k,$v := .Options}}
|
||||||
{{$k | printf "-%-11s" | bold}} {{$v}}{{end}}{{endline}}{{end}}
|
{{$k | printf "-%-12s" | bold}} {{$v}}{{end}}{{endline}}{{end}}
|
||||||
{{"DESCRIPTION" | headline}}
|
{{"DESCRIPTION" | headline}}
|
||||||
{{tmpltostr .Long . | trim}}
|
{{tmpltostr .Long . | trim}}
|
||||||
`
|
`
|
||||||
|
2
run.go
2
run.go
@ -60,7 +60,7 @@ func init() {
|
|||||||
cmdRun.Flag.Var(&gendoc, "gendoc", "Enable auto-generate the docs.")
|
cmdRun.Flag.Var(&gendoc, "gendoc", "Enable auto-generate the docs.")
|
||||||
cmdRun.Flag.Var(&downdoc, "downdoc", "Enable auto-download of the swagger file if it does not exist.")
|
cmdRun.Flag.Var(&downdoc, "downdoc", "Enable auto-download of the swagger file if it does not exist.")
|
||||||
cmdRun.Flag.Var(&excludedPaths, "e", "List of paths to exclude.")
|
cmdRun.Flag.Var(&excludedPaths, "e", "List of paths to exclude.")
|
||||||
cmdRun.Flag.BoolVar(&vendorWatch, "vendor", false, "Enable watch vendor folder")
|
cmdRun.Flag.BoolVar(&vendorWatch, "vendor", false, "Enable watch vendor folder.")
|
||||||
cmdRun.Flag.StringVar(&buildTags, "tags", "", "Set the build tags. See: https://golang.org/pkg/go/build/")
|
cmdRun.Flag.StringVar(&buildTags, "tags", "", "Set the build tags. See: https://golang.org/pkg/go/build/")
|
||||||
cmdRun.Flag.StringVar(&runmode, "runmode", "", "Set the Beego run mode.")
|
cmdRun.Flag.StringVar(&runmode, "runmode", "", "Set the Beego run mode.")
|
||||||
exit = make(chan bool)
|
exit = make(chan bool)
|
||||||
|
Loading…
Reference in New Issue
Block a user