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
The -V flag doesn't appear to have any effect, other than tell me how quickly the command exited again:
-V
% cargo binstall -V 14:08:44 [INFO] Done in 5.051916ms
Nothing in the bin crate actually handles the version arg, nor will Clap do this as the option was disabled to avoid conflicting with --version.
bin
version
--version
The text was updated successfully, but these errors were encountered:
Confirmed this behavior, I would fix it tomorrow.
Sorry, something went wrong.
Fix -V behavior (#488)
f4f6e36
Fixed #485 * Make `Duration` in MainExit::Success` optional * Fix arg parsing: Print version on `-V` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
NobodyXu
Successfully merging a pull request may close this issue.
The
-V
flag doesn't appear to have any effect, other than tell me how quickly the command exited again:% cargo binstall -V 14:08:44 [INFO] Done in 5.051916ms
Nothing in the
bin
crate actually handles theversion
arg, nor will Clap do this as the option was disabled to avoid conflicting with--version
.The text was updated successfully, but these errors were encountered: