diff options
| author | Alex Flint <[email protected]> | 2023-07-14 15:52:33 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-14 15:52:33 -0400 |
| commit | 660b9045e10d4d2f8474e2739e6b0013636c065c (patch) | |
| tree | eafc87355350d43926401b91abe98d4d2e1d4ec1 /usage.go | |
| parent | 463902ef7d1219df0c6306a3838f4e003da92f91 (diff) | |
| parent | c73f38cd547cccc7930cf2e302c835e3f424ffd4 (diff) | |
Merge pull request #223 from hhromic/fix-version-flag
Improve handling of version flag
Diffstat (limited to 'usage.go')
| -rw-r--r-- | usage.go | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -209,6 +209,7 @@ func (p *Parser) WriteHelpForSubcommand(w io.Writer, subcommand ...string) error // writeHelp writes the usage string for the given subcommand func (p *Parser) writeHelpForSubcommand(w io.Writer, cmd *command) { var positionals, longOptions, shortOptions, envOnlyOptions []*spec + var hasVersionOption bool for _, spec := range cmd.specs { switch { case spec.positional: @@ -243,6 +244,9 @@ func (p *Parser) writeHelpForSubcommand(w io.Writer, cmd *command) { } for _, spec := range longOptions { p.printOption(w, spec) + if spec.long == "version" { + hasVersionOption = true + } } } @@ -259,6 +263,9 @@ func (p *Parser) writeHelpForSubcommand(w io.Writer, cmd *command) { fmt.Fprint(w, "\nGlobal options:\n") for _, spec := range globals { p.printOption(w, spec) + if spec.long == "version" { + hasVersionOption = true + } } } @@ -269,7 +276,7 @@ func (p *Parser) writeHelpForSubcommand(w io.Writer, cmd *command) { short: "h", help: "display this help and exit", }) - if p.version != "" { + if !hasVersionOption && p.version != "" { p.printOption(w, &spec{ cardinality: zero, long: "version", |
