mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
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
This commit is contained in:
parent
d5b058f496
commit
d9206ebefc
@ -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;
|
||||
})();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user