Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix help hint #213

Merged
merged 4 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions args/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,12 @@ Options:
Available generators (and options): go
`)
//// print backend options
//for _, b := range g.AllBackend() {
// name, lang := b.Name(), b.Lang()
// println(fmt.Sprintf(" %s (%s):", name, lang))
// println(align(b.Options()))
//}
println()
// print backend options
b := new(golang.GoBackend)
name, lang := b.Name(), b.Lang()
println(fmt.Sprintf(" %s (%s):", name, lang))
println(align(b.Options()))

}

// align the help strings for plugin options.
Expand Down
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ func init() {

func check(err error) {
if err != nil {
println(err.Error())
if err.Error() != "flag: help requested" {
println(err.Error())
}
os.Exit(2)
}
}
Expand Down
Loading