summary refs log tree commit diff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/qmk/cli/doctor.py8
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: