Skip to content

Commit

Permalink
feat(webdriver): support geckodriver for macos-aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
nananchi committed Jan 7, 2025
1 parent 32e52ca commit 6f23bce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/webdriver/geckodriver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ pub fn install_geckodriver(cache: &Cache, installation_allowed: bool) -> Result<
("linux64", "tar.gz")
} else if target::LINUX && target::aarch64 {
("linux-aarch64", "tar.gz")
} else if target::MACOS {
} else if target::MACOS && target::x86_64 {
("macos", "tar.gz")
} else if target::MACOS && target::aarch64 {
("macos-aarch64", "tar.gz")
} else if target::WINDOWS && target::x86 {
("win32", "zip")
} else if target::WINDOWS && target::x86_64 {
Expand Down

0 comments on commit 6f23bce

Please sign in to comment.