Skip to content

Commit 594e959

Browse files
authored
Fix download URL for JSC on mac64 (#167)
Looks like the URL changes; with `%20` you get `403 Forbidden`. Replacing by `-` makes it work again (tested on an M3 Max on Sequoia 15.7.2).
1 parent 4968c3c commit 594e959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engines/javascriptcore/predict-url.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const predictUrl = (version, os) => {
2020
case 'mac64':
2121
case 'mac64arm': {
2222
const name = getMacOsName();
23-
return `https://s3-us-west-2.amazonaws.com/minified-archives.webkit.org/mac-${name}-x86_64%20arm64-release/${version}@main.zip`;
23+
return `https://s3-us-west-2.amazonaws.com/minified-archives.webkit.org/mac-${name}-x86_64-arm64-release/${version}@main.zip`;
2424
}
2525
case 'linux64': {
2626
return `https://webkitgtk.org/jsc-built-products/x86_64/release/${version}@main.zip`;

0 commit comments

Comments
 (0)