Browse Source

build: Support building Electron on msys2 (#29478)

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 <[email protected]>

Co-authored-by: Juan Cruz Viotti <[email protected]>
trop[bot] 3 years ago
parent
commit
e4a3f064de
1 changed files with 1 additions and 0 deletions
  1. 1 0
      script/lib/config.py

+ 1 - 0
script/lib/config.py

@@ -18,6 +18,7 @@ BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \
 
 PLATFORM = {
   'cygwin': 'win32',
+  'msys': 'win32',
   'darwin': 'darwin',
   'linux': 'linux',
   'linux2': 'linux',