Skip to content

Commit 0fcd3d8

Browse files
committed
use the correct path to bsc for Linux ARM64
1 parent 93380a2 commit 0fcd3d8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/helpers.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ pub fn get_bsc(root_path: &str, workspace_root: Option<String>) -> String {
140140
let subfolder = match (std::env::consts::OS, std::env::consts::ARCH) {
141141
("macos", "aarch64") => "darwinarm64",
142142
("macos", _) => "darwin",
143+
("linux", "aarch64") => "linuxarm64",
143144
("linux", _) => "linux",
144145
("windows", _) => "win32",
145146
_ => panic!("Unsupported architecture"),

0 commit comments

Comments
 (0)