Skip to content

Commit b71731a

Browse files
authored
Pin Apple ARM64 Node Nightly (#1596)
Node.js Apple ARM64 nightly downloads are currently out of order, so pin to recent version that does still exist. https://github.com/nodejs/node/issues/59654
1 parent 5899439 commit b71731a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

emsdk.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1478,6 +1478,11 @@ def find_emscripten_root(active_tools):
14781478

14791479

14801480
def fetch_nightly_node_versions():
1481+
# Node.js Apple ARM64 nightly downloads are currently out of order, so pin
1482+
# to recent version that does still exist. https://github.com/nodejs/node/issues/59654
1483+
if MACOS and ARCH == 'arm64':
1484+
return ['v25.0.0-nightly20250715b305119844']
1485+
14811486
url = "https://nodejs.org/download/nightly/"
14821487
with urlopen(url) as response:
14831488
html = response.read().decode("utf-8")

0 commit comments

Comments
 (0)