We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
macos-14
1 parent f2d38a6 commit c7a9638Copy full SHA for c7a9638
src/snapshot.ts
@@ -103,6 +103,8 @@ const makeBasename = ({ os }: Platform): string => {
103
const makePlatformPart = ({ os, arch }: Platform): string => {
104
if (os === OS.DARWIN && arch === Arch.AMD64) {
105
return "Mac";
106
+ } else if (os === OS.DARWIN && arch === Arch.ARM64) {
107
+ return "Mac_Arm";
108
} else if (os === OS.LINUX && arch === Arch.I686) {
109
return "Linux";
110
} else if (os === OS.LINUX && arch === Arch.AMD64) {
0 commit comments