fix: linux arm64 check on windows arm (#8917)

Closes #8915
This commit is contained in:
robrobrobrob 2022-09-08 01:20:59 -07:00 committed by GitHub
parent 7a2d9df146
commit f02b926245
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}