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.
2 parents c6801ef + 8c704e3 commit cf96cbaCopy full SHA for cf96cba
miri-script/src/commands.rs
@@ -231,11 +231,6 @@ impl Command {
231
cmd!(sh, "rustup override set miri").run()?;
232
// Cleanup.
233
cmd!(sh, "cargo clean").run()?;
234
- // Call `cargo metadata` on the sources in case that changes the lockfile
235
- // (which fails under some setups when it is done from inside vscode).
236
- let sysroot = cmd!(sh, "rustc --print sysroot").read()?;
237
- let sysroot = sysroot.trim();
238
- cmd!(sh, "cargo metadata --format-version 1 --manifest-path {sysroot}/lib/rustlib/rustc-src/rust/compiler/rustc/Cargo.toml").ignore_stdout().run()?;
239
Ok(())
240
}
241
0 commit comments