Skip to content

Commit be520bb

Browse files
authored
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.
1 parent dadf06a commit be520bb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

emsdk.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1282,6 +1282,8 @@ def download_firefox(tool):
12821282
platform = None
12831283
if LINUX and 'arm' in ARCH:
12841284
platform = 'linux-arm64'
1285+
if WINDOWS and 'arm' in ARCH:
1286+
platform = 'win64-aarch64'
12851287

12861288
if tool.version == 'nightly':
12871289
scraper = FactoryScraper('daily', extension=extension, locale='en-US', platform=platform)

0 commit comments

Comments
 (0)