Skip to content

Commit

Permalink
[rust] Use tax.xz for Firefox package starting in version 135
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Jan 13, 2025
1 parent 013443d commit f064eca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rust/src/firefox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,11 @@ impl SeleniumManager for FirefoxManager {
} else {
// Linux
artifact_name = "firefox-";
artifact_extension = "tar.bz2";
if major_browser_version < 135 {
artifact_extension = "tar.bz2";
} else {
artifact_extension = "tar.xz";
}
if X32.is(arch) {
platform_label = "linux-i686";
} else if self.is_nightly(browser_version) {
Expand Down

0 comments on commit f064eca

Please sign in to comment.