We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bc8c8a commit 332fcceCopy full SHA for 332fcce
crates/cargo-gpu/src/main.rs
@@ -400,6 +400,11 @@ impl Install {
400
std::fs::rename(&cli_path, &dest_cli_path).unwrap();
401
} else {
402
log::error!("could not find {}", cli_path.display());
403
+ log::debug!("contents of '{}':", release.display());
404
+ for entry in std::fs::read_dir(&release).unwrap() {
405
+ let entry = entry.unwrap();
406
+ log::debug!("{}", entry.file_name().to_string_lossy());
407
+ }
408
panic!("spirv-builder-cli build failed");
409
}
410
@@ -797,6 +802,7 @@ mod test {
797
802
798
803
#[test]
799
804
fn cached_checkout_dir_sanity() {
805
+ // Test that
800
806
let spirv = Spirv::default();
801
807
let dir = spirv.cached_checkout_path();
808
let name = dir
0 commit comments