summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/args/flags.rs9
-rw-r--r--tests/specs/flags/version_flag/__test__.jsonc21
2 files changed, 23 insertions, 7 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")
diff --git a/tests/specs/flags/version_flag/__test__.jsonc b/tests/specs/flags/version_flag/__test__.jsonc
index e8c3c1646..c8ddc7069 100644
--- a/tests/specs/flags/version_flag/__test__.jsonc
+++ b/tests/specs/flags/version_flag/__test__.jsonc
@@ -1,9 +1,16 @@
{
- "steps": [{
- "args": "-V",
- "output": "[WILDCARD]"
- }, {
- "args": "--version",
- "output": "[WILDCARD]"
- }]
+ "tests": {
+ "uppercase_v": {
+ "args": "-V",
+ "output": "[WILDCARD]"
+ },
+ "lowercase_v": {
+ "args": "-v",
+ "output": "[WILDCARD]"
+ },
+ "long_version": {
+ "args": "--version",
+ "output": "[WILDCARD]"
+ }
+ }
}