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.
isProcess64Bit
arm64
1 parent 4a9d605 commit 82c120dCopy full SHA for 82c120d
src/platform.ts
@@ -49,7 +49,7 @@ export function getPlatformDetails(): IPlatformDetails {
49
operatingSystem = OperatingSystem.Linux;
50
}
51
52
- const isProcess64Bit = process.arch === "x64";
+ const isProcess64Bit = (process.arch === "x64" || process.arch === "arm64");
53
54
return {
55
operatingSystem,
0 commit comments