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.
1 parent 4f766fe commit ef7d055Copy full SHA for ef7d055
collector/src/compile/execute/mod.rs
@@ -290,9 +290,10 @@ impl<'a> CargoProcess<'a> {
290
let _guard = EnsureImmutableFile::new(
291
&self.cwd.join("Cargo.lock"),
292
self.processor_name.0.clone(),
293
- )?;
+ )
294
+ .context("cannot resolve Cargo.lock")?;
295
- // Get the subcommand. If it's not `rustc` it must should be a
296
+ // Get the subcommand. If it's not `rustc` it should be a
297
// subcommand that itself invokes `rustc` (so that the `FAKE_RUSTC`
298
// machinery works).
299
let cargo_subcommand =
0 commit comments