We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, main returns a Result<(), Box<dyn Error>>, which means
Result<(), Box<dyn Error>>
Context is also not provided for errors. Use https://docs.rs/anyhow/latest/anyhow/.
Clap also calls exit(2) directly. try_parse should be used instead.
exit(2)
try_parse
Using https://crates.io/crates/exitcode would be a good idea for informative exit codes.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, main returns a
Result<(), Box<dyn Error>>
, which meansContext is also not provided for errors. Use https://docs.rs/anyhow/latest/anyhow/.
Clap also calls
exit(2)
directly.try_parse
should be used instead.Using https://crates.io/crates/exitcode would be a good idea for informative exit codes.
The text was updated successfully, but these errors were encountered: