summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-04-02 21:24:42 +0000
committerQMK Bot <hello@qmk.fm>2021-04-02 21:24:42 +0000
commit65fab0ef5b83b9031138354d169eab21e401bf8b (patch)
tree9b56cf259676fca3a057988cc05c71568d973c59
parent6e531d0cccaac41d4e8a18e0cf1622f7cd42e7dd (diff)
parentcd981ec56a546a29f30c3cc1ce1f5ef2934bc9cd (diff)
Merge remote-tracking branch 'origin/master' into develop
-rwxr-xr-xlib/python/qmk/cli/doctor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py
index 45a53c7d44..4a2e2010f7 100755
--- a/lib/python/qmk/cli/doctor.py
+++ b/lib/python/qmk/cli/doctor.py
@@ -36,7 +36,7 @@ def os_test_linux():
cli.log.info("Detected {fg_cyan}Linux (WSL){fg_reset}.")
# https://github.com/microsoft/WSL/issues/4197
- if QMK_FIRMWARE.startswith("/mnt"):
+ if QMK_FIRMWARE.as_posix().startswith("/mnt"):
cli.log.warning("I/O performance on /mnt may be extremely slow.")
return CheckStatus.WARNING