Skip to content

Commit

Permalink
Add current system MSYS check (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
bonfy authored Sep 20, 2024
1 parent c5f5f90 commit ca4e80b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fire/console/platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ def Current():
return OperatingSystem.MACOSX
elif 'cygwin' in sys.platform:
return OperatingSystem.CYGWIN
elif 'msys' in sys.platform:
return OperatingSystem.MSYS
return None

@staticmethod
Expand Down

0 comments on commit ca4e80b

Please sign in to comment.