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 c59ec4e commit 014a36dCopy full SHA for 014a36d
crates/symbol-check/src/main.rs
@@ -171,20 +171,6 @@ fn verify_no_duplicates(path: impl AsRef<Path>) {
171
172
if !dups.is_empty() {
173
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
188
panic!("found duplicate symbols: {dups:#?}");
189
}
190
0 commit comments