TeXitoi / structopt

Parse command line arguments by defining a struct.
Other
2.71k stars 151 forks source link

Bug: Version is always suffixed with Error: #484

Closed Milo123459 closed 3 years ago

Milo123459 commented 3 years ago

Example: img

Code: https://github.com/Milo123459/salt

TeXitoi commented 3 years ago

https://docs.rs/clap/2.33.3/clap/enum.ErrorKind.html#variant.VersionDisplayed

I'd just use from_args instead of from_arg_safe in main, as that's the result in main that should print this unwanted text.

Milo123459 commented 3 years ago

Let me try.

Milo123459 commented 3 years ago

Works. Thank you!