Skip to content

Commit

Permalink
fix: linux arm64 check on windows arm (#8917)
Browse files Browse the repository at this point in the history
Closes #8915
  • Loading branch information
robrobrobrob committed Sep 8, 2022
1 parent 7a2d9df commit f02b926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/BrowserFetcher.ts
Expand Up @@ -336,7 +336,7 @@ export class BrowserFetcher {
}

// Use system Chromium builds on Linux ARM devices
if (os.platform() !== 'darwin' && os.arch() === 'arm64') {
if (os.platform() === 'linux' && os.arch() === 'arm64') {
handleArm64();
return;
}
Expand Down

0 comments on commit f02b926

Please sign in to comment.