diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/args/flags.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 9de1c6057..1c18ce00f 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1236,6 +1236,15 @@ fn clap_root() -> Command { .long_version(long_version) // cause --unstable flags to display at the bottom of the help text .next_display_order(1000) + .disable_version_flag(true) + .arg( + Arg::new("version") + .short('V') + .short_alias('v') + .long("version") + .action(ArgAction::Version) + .help("Print version") + ) .arg( Arg::new("unstable") .long("unstable") |