From d9206ebefcf3c2dc74af3df3b24499127bd597a8 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 19 Aug 2021 16:09:04 +0300 Subject: [PATCH] chore: pretend world is win64 (#8306) It looks like we have a very small share of users on 32-bit windows. This is a tiny change that stops Playwright from using 32-bit windows binaries. References #8045 --- src/utils/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/utils.ts b/src/utils/utils.ts index cb4aeb385d..d9cf27b09b 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -379,7 +379,7 @@ export const hostPlatform = ((): HostPlatform => { return 'ubuntu20.04'; } if (platform === 'win32') - return os.arch() === 'x64' ? 'win64' : 'win32'; + return 'win64'; return platform as HostPlatform; })();