diff options
Diffstat (limited to 'lib/python/qmk/cli')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index 0d6c1c5b0..577588492 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py | |||
@@ -170,7 +170,7 @@ def doctor(cli): | |||
170 | # Determine our OS and run platform specific tests | 170 | # Determine our OS and run platform specific tests |
171 | OS = platform.platform().lower() # noqa (N806), uppercase name is ok in this instance | 171 | OS = platform.platform().lower() # noqa (N806), uppercase name is ok in this instance |
172 | 172 | ||
173 | if 'darwin' in OS: | 173 | if 'darwin' or 'macos' in OS: |
174 | if not os_test_macos(): | 174 | if not os_test_macos(): |
175 | ok = False | 175 | ok = False |
176 | elif 'linux' in OS: | 176 | elif 'linux' in OS: |