Skip to content

Commit ca4e80b

Browse files
authored
Add current system MSYS check (#278)
1 parent c5f5f90 commit ca4e80b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: fire/console/platforms.py

+2
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,8 @@ def Current():
153153
return OperatingSystem.MACOSX
154154
elif 'cygwin' in sys.platform:
155155
return OperatingSystem.CYGWIN
156+
elif 'msys' in sys.platform:
157+
return OperatingSystem.MSYS
156158
return None
157159

158160
@staticmethod

0 commit comments

Comments
 (0)