We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3292664 commit 6c87ef0Copy full SHA for 6c87ef0
crates/rustc_codegen_spirv/build.rs
@@ -135,6 +135,10 @@ fn generate_pqp_cg_ssa() -> Result<(), Box<dyn Error>> {
135
}
136
137
let in_path = entry.path();
138
+
139
+ if in_path.ends_with(".DS_Store") {
140
+ continue;
141
+ }
142
let out_path = out_dir.join(entry.file_name());
143
144
let mut src = fs::read_to_string(in_path)?;
0 commit comments