We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.expect()
1 parent e751eeb commit 7d310aaCopy full SHA for 7d310aa
cargo-miri/bin.rs
@@ -500,7 +500,7 @@ fn detect_target_dir() -> PathBuf {
500
// Check this `Result` after `status.success()` is checked, so we don't print the error
501
// to stderr if `cargo metadata` is also printing to stderr.
502
let metadata: Result<Metadata, _> = serde_json::from_reader(child.stdout.take().unwrap());
503
- let status = child.wait().expect("failed to wait `cargo metadata` to exit");
+ let status = child.wait().expect("failed to wait for `cargo metadata` to exit");
504
if !status.success() {
505
std::process::exit(status.code().unwrap_or(-1));
506
}
0 commit comments