Skip to content

Commit

Permalink
Fix os detection in OSX python 3.8 (qmk#8187)
Browse files Browse the repository at this point in the history
* Fix os detection in osx python 3.8

* oops
  • Loading branch information
Duckle29 authored and drashna committed Mar 26, 2020
1 parent 0caee68 commit 91d34ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/doctor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 91d34ed

Please sign in to comment.