diff --git a/base/system_info.py b/base/system_info.py index d9987b4..f84de4c 100644 --- a/base/system_info.py +++ b/base/system_info.py @@ -232,6 +232,8 @@ def get_os() -> str: uname_str = platform.system() if 'MINGW' in uname_str: return 'windows' + elif 'MSYS' in uname_str: + return 'windows' elif uname_str == 'Windows': return 'windows' elif uname_str == 'Linux':