Преглед изворни кода

Fix os detection in OSX python 3.8 (#8187)

* Fix os detection in osx python 3.8

* oops
Mikkel Jeppesen пре 5 година
родитељ
комит
0d3f0889c5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lib/python/qmk/cli/doctor.py

+ 1 - 1
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: