summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Jeppesen <2756925+Duckle29@users.noreply.github.com>2020-02-17 12:18:49 +0100
committerGitHub <noreply@github.com>2020-02-17 12:18:49 +0100
commit0d3f0889c58e10f6c1e56d958e9ad85ea82d5a08 (patch)
tree5e0166ab17d1a79405f9ffce340fe48523ee7ac6
parent79e6b7866988f3cfc1c5b6746e5f400b50704ce8 (diff)
Fix os detection in OSX python 3.8 (#8187)0.7.155
* Fix os detection in osx python 3.8 * oops
-rwxr-xr-xlib/python/qmk/cli/doctor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py
index 0d6c1c5b06..577588492d 100755
--- a/lib/python/qmk/cli/doctor.py
+++ b/lib/python/qmk/cli/doctor.py
@@ -170,7 +170,7 @@ def doctor(cli):
# Determine our OS and run platform specific tests
OS = platform.platform().lower() # noqa (N806), uppercase name is ok in this instance
- if 'darwin' in OS:
+ if 'darwin' or 'macos' in OS:
if not os_test_macos():
ok = False
elif 'linux' in OS: