Skip to content

Commit

Permalink
qmk doctor: show arch for macOS (qmk#17356)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored and zykrah committed Jul 2, 2022
1 parent 6ceeb49 commit 5506276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/doctor/macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
def os_test_macos():
"""Run the Mac specific tests.
"""
cli.log.info("Detected {fg_cyan}macOS %s{fg_reset}.", platform.mac_ver()[0])
cli.log.info("Detected {fg_cyan}macOS %s (%s){fg_reset}.", platform.mac_ver()[0], 'Apple Silicon' if platform.processor() == 'arm' else 'Intel')

return CheckStatus.OK

0 comments on commit 5506276

Please sign in to comment.