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 af15805 commit fd5da3cCopy full SHA for fd5da3c
crates/cargo-gpu/src/install.rs
@@ -208,8 +208,8 @@ package = "rustc_codegen_spirv"
208
.manifest_path
209
.as_std_path()
210
.parent()
211
- .and_then(|p| {
212
- let src = p.join("target-specs");
+ .and_then(|root| {
+ let src = root.join("target-specs");
213
src.is_dir().then_some(src)
214
})
215
.context("Could not find `target-specs` directory within `rustc_codegen_spirv-target-specs` dependency")?;
0 commit comments