diff options
author | Mikkel Jeppesen <2756925+Duckle29@users.noreply.github.com> | 2020-01-28 22:21:00 +0100 |
---|---|---|
committer | Erovia <Erovia@users.noreply.github.com> | 2020-01-28 22:21:00 +0100 |
commit | 197a401be6585b0b9aad3ca02ec1829e894e9a62 (patch) | |
tree | ffb64115de906a766d1c80d916d2212aaf575fec /lib/python | |
parent | 4a208b89516f02f4ff7e17861aabbe1b5af13f81 (diff) | |
download | qmk_firmware-197a401be6585b0b9aad3ca02ec1829e894e9a62.tar.gz qmk_firmware-197a401be6585b0b9aad3ca02ec1829e894e9a62.zip |
Qmk doctor os check to support newer msys2/w10 installations (#8031)
* Fixed OS detection on newer MSYS installations
* made OS sting lower case
Diffstat (limited to 'lib/python')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index 013bf7943c..0d6c1c5b06 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py @@ -168,15 +168,15 @@ def doctor(cli): ok = True # Determine our OS and run platform specific tests - OS = platform.system() # noqa (N806), uppercase name is ok in this instance + OS = platform.platform().lower() # noqa (N806), uppercase name is ok in this instance - if OS == 'Darwin': + if 'darwin' in OS: if not os_test_macos(): ok = False - elif OS == 'Linux': + elif 'linux' in OS: if not os_test_linux(): ok = False - elif OS == 'Windows': + elif 'windows' in OS: if not os_test_windows(): ok = False else: |