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