We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f7b3d3 commit 875379dCopy full SHA for 875379d
public/get/index.js
@@ -23,7 +23,7 @@ const packagesPromise = fetch(LATEST_RELEASE_API_URL)
23
} else if (name.endsWith('.AppImage')) {
24
acc['linux'] = browser_download_url;
25
} else if (name.endsWith('.dmg')) {
26
- acc[`mac-${name.includes('arm') ? 'arm' : 'x64'}`] = browser_download_url;
+ acc[`mac-${name.includes('arm') || name.includes('aarch') ? 'arm' : 'x64'}`] = browser_download_url;
27
}
28
29
return acc;
0 commit comments