Hide full miri command line in ./miri run-dep

This commit is contained in:
Oli Scherer 2023-05-23 07:51:09 +00:00
parent aee196fb14
commit 0f5ac8372b

View file

@ -277,7 +277,6 @@ fn run_dep_mode(target: String, mut args: impl Iterator<Item = OsString>) -> Res
// the arguments to the interpreted prog
cmd.arg("--");
cmd.args(args);
println!("{cmd:?}");
if cmd.spawn()?.wait()?.success() { Ok(()) } else { std::process::exit(1) }
}