Skip to content

msys2 support for tools/get.py #5751

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
msys2 support for tools/get.py
  • Loading branch information
oddstr13 committed Feb 11, 2019
commit fe29b6b12cdfaa8faafa84c906d4ee55e6afcaf5
2 changes: 2 additions & 0 deletions tools/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down