aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/doctor/macos.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/cli/doctor/macos.py')
-rw-r--r--lib/python/qmk/cli/doctor/macos.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/doctor/macos.py b/lib/python/qmk/cli/doctor/macos.py
new file mode 100644
index 000000000..00fb27285
--- /dev/null
+++ b/lib/python/qmk/cli/doctor/macos.py
@@ -0,0 +1,13 @@
1import platform
2
3from milc import cli
4
5from .check import CheckStatus
6
7
8def os_test_macos():
9 """Run the Mac specific tests.
10 """
11 cli.log.info("Detected {fg_cyan}macOS %s{fg_reset}.", platform.mac_ver()[0])
12
13 return CheckStatus.OK