aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/doctor.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/cli/doctor.py')
-rwxr-xr-xlib/python/qmk/cli/doctor.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py
index 28d480707..9210737f1 100755
--- a/lib/python/qmk/cli/doctor.py
+++ b/lib/python/qmk/cli/doctor.py
@@ -31,16 +31,22 @@ def os_tests():
31def os_test_linux(): 31def os_test_linux():
32 """Run the Linux specific tests. 32 """Run the Linux specific tests.
33 """ 33 """
34 cli.log.info("Detected {fg_cyan}Linux.") 34 # Don't bother with udev on WSL, for now
35 from qmk.os_helpers.linux import check_udev_rules 35 if 'microsoft' in platform.uname().release.lower():
36 cli.log.info("Detected {fg_cyan}Linux (WSL){fg_reset}.")
36 37
37 return check_udev_rules() 38 return CheckStatus.OK
39 else:
40 cli.log.info("Detected {fg_cyan}Linux{fg_reset}.")
41 from qmk.os_helpers.linux import check_udev_rules
42
43 return check_udev_rules()
38 44
39 45
40def os_test_macos(): 46def os_test_macos():
41 """Run the Mac specific tests. 47 """Run the Mac specific tests.
42 """ 48 """
43 cli.log.info("Detected {fg_cyan}macOS.") 49 cli.log.info("Detected {fg_cyan}macOS{fg_reset}.")
44 50
45 return CheckStatus.OK 51 return CheckStatus.OK
46 52
@@ -48,7 +54,7 @@ def os_test_macos():
48def os_test_windows(): 54def os_test_windows():
49 """Run the Windows specific tests. 55 """Run the Windows specific tests.
50 """ 56 """
51 cli.log.info("Detected {fg_cyan}Windows.") 57 cli.log.info("Detected {fg_cyan}Windows{fg_reset}.")
52 58
53 return CheckStatus.OK 59 return CheckStatus.OK
54 60