Fix mozdownload of native ARM64 Firefox on Windows-on-ARM. (#1621)

Before mozdownload was downloading x64 artifacts and running them
through the Windows Prism emulation.
This commit is contained in:
juj
2025-10-23 20:33:44 +03:00
committed by GitHub
parent dadf06a88d
commit be520bbc10

View File

@@ -1282,6 +1282,8 @@ def download_firefox(tool):
platform = None
if LINUX and 'arm' in ARCH:
platform = 'linux-arm64'
if WINDOWS and 'arm' in ARCH:
platform = 'win64-aarch64'
if tool.version == 'nightly':
scraper = FactoryScraper('daily', extension=extension, locale='en-US', platform=platform)