diff --git a/src/node/BrowserFetcher.ts b/src/node/BrowserFetcher.ts index 7c425c2dbba50..2e2fb6419a4d9 100644 --- a/src/node/BrowserFetcher.ts +++ b/src/node/BrowserFetcher.ts @@ -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; }