build: Support building Electron on msys2 (#29476)

Electron already seems to support `cygwin`, so `msys` is a natural
addition. This is the only required change as far as I can see on my
local development environment, as otherwise the build scripts don't
realize that msys = windows.

Notes: none
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>

Co-authored-by: Juan Cruz Viotti <jv@jviotti.com>
This commit is contained in:
trop[bot]
2021-06-02 22:24:37 +09:00
committed by GitHub
parent 6362736703
commit 8edb7b456f

View File

@@ -6,6 +6,7 @@ import sys
PLATFORM = {
'cygwin': 'win32',
'msys': 'win32',
'darwin': 'darwin',
'linux': 'linux',
'linux2': 'linux',