1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

msys2 support for tools/get.py (#5751)

This commit is contained in:
Odd Stråbø
2019-02-11 12:18:03 +01:00
committed by david gauchard
parent 5f68e61b26
commit 5948b0fc52

View File

@ -106,6 +106,8 @@ def identify_platform():
sys_name = 'LinuxARM'
if 'CYGWIN_NT' in sys_name:
sys_name = 'Windows'
if 'MSYS_NT' in sys_name:
sys_name = 'Windows'
return arduino_platform_names[sys_name][bits]
def main():