Skip to content

Commit 35bb083

Browse files
committed
update
1 parent a10899f commit 35bb083

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

crates/symbol-check/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ fn verify_no_duplicates(path: impl AsRef<Path>) {
169169
if !dups.is_empty() {
170170
dups.sort_unstable_by(|a, b| a.name.cmp(&b.name));
171171

172-
Command::new("./run-rust-nm")
172+
Command::new("bash")
173+
.arg("run-rust-nm.sh")
173174
.arg(std::env::var("TARGET").unwrap())
174175
.arg(path.as_ref())
175176
.status()
File renamed without changes.

0 commit comments

Comments
 (0)