Skip to content

Commit 014a36d

Browse files
committed
fix
1 parent c59ec4e commit 014a36d

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

crates/symbol-check/src/main.rs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -171,20 +171,6 @@ fn verify_no_duplicates(path: impl AsRef<Path>) {
171171

172172
if !dups.is_empty() {
173173
dups.sort_unstable_by(|a, b| a.name.cmp(&b.name));
174-
175-
let bash = if cfg!(windows) {
176-
r#"C:\Program Files\Git\bin\bash.EXE"#
177-
} else {
178-
"bash"
179-
};
180-
181-
Command::new(bash)
182-
.arg("run-rust-nm.sh")
183-
.arg(std::env::var("TARGET").unwrap())
184-
.arg(path.as_ref())
185-
.status()
186-
.unwrap();
187-
188174
panic!("found duplicate symbols: {dups:#?}");
189175
}
190176

0 commit comments

Comments
 (0)