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 a62ef3d commit 86f165eCopy full SHA for 86f165e
scripts/pinned_browsers.py
@@ -416,7 +416,12 @@ def firefox_version_data():
416
417
418
def firefox_linux(version):
419
- return "https://ftp.mozilla.org/pub/firefox/releases/%s/linux-x86_64/en-US/firefox-%s.tar.bz2" % (version, version)
+ if int(version.split(".")[0]) < 135:
420
+ return "https://ftp.mozilla.org/pub/firefox/releases/%s/linux-x86_64/en-US/firefox-%s.tar.bz2" % (
421
+ version, version)
422
+ else:
423
+ return "https://ftp.mozilla.org/pub/firefox/releases/%s/linux-x86_64/en-US/firefox-%s.tar.xz" % (
424
425
426
427
def firefox_mac(version):
0 commit comments