(version)
| 465 | |
| 466 | |
| 467 | def firefox_linux(version): |
| 468 | if int(version.split(".")[0]) < 135: |
| 469 | return f"https://ftp.mozilla.org/pub/firefox/releases/{version}/linux-x86_64/en-US/firefox-{version}.tar.bz2" |
| 470 | else: |
| 471 | return f"https://ftp.mozilla.org/pub/firefox/releases/{version}/linux-x86_64/en-US/firefox-{version}.tar.xz" |
| 472 | |
| 473 | |
| 474 | def firefox_mac(version): |
no test coverage detected