Skip to content

Commit 4e43248

Browse files
authored
Look for x64 version on arm64 windows (#266)
1 parent 5d97b33 commit 4e43248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/compiler-path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const compilerCommand = (() => {
2727
// TODO: Make sure to remove "arm64" from "npm/win32-x64/package.json" when
2828
// this logic is removed once we have true windows-arm64 support.
2929
const arch =
30-
platform === 'win32' && process.arch === 'arm64' ? 'x86' : process.arch;
30+
platform === 'win32' && process.arch === 'arm64' ? 'x64' : process.arch;
3131

3232
// find for development
3333
for (const path of ['vendor', '../../../lib/src/vendor']) {

0 commit comments

Comments
 (0)