Skip to content

Commit 8c0f859

Browse files
authored
Merge pull request #4359 from RalfJung/cargo-miri-verbose
cargo-miri: recognize --verbose alongside -v
2 parents 12300f5 + 3e126f2 commit 8c0f859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/miri/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)