Skip to content

Commit 99437c0

Browse files
committed
ls test
1 parent 4416c45 commit 99437c0

File tree

1 file changed

+6
-0
lines changed
  • crates/spirv-builder/src

1 file changed

+6
-0
lines changed

crates/spirv-builder/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,12 @@ impl SpirvBuilder {
192192
format!("--features={}", self.codegen_options.spirv_tools),
193193
];
194194

195+
std::process::Command::new("ls")
196+
.stdout(Stdio::inherit())
197+
.stderr(Stdio::inherit())
198+
.current_dir(&repo_dir)
199+
.output()?;
200+
195201
if self.codegen_options.release {
196202
args.push("--release".into());
197203
}

0 commit comments

Comments
 (0)