Skip to content

Commit d035bf9

Browse files
authored
Merge pull request #4359 from RalfJung/cargo-miri-verbose
cargo-miri: recognize --verbose alongside -v
2 parents 46e891c + 934a7a6 commit d035bf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cargo-miri/src/phases.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pub fn phase_cargo_miri(mut args: impl Iterator<Item = String>) {
9090
"`cargo miri` supports the following subcommands: `run`, `test`, `nextest`, `clean`, and `setup`."
9191
),
9292
};
93-
let verbose = num_arg_flag("-v");
93+
let verbose = num_arg_flag("-v") + num_arg_flag("--verbose");
9494
let quiet = has_arg_flag("-q") || has_arg_flag("--quiet");
9595

9696
// Determine the involved architectures.

0 commit comments

Comments
 (0)