diff options
author | Ryan <fauxpark@gmail.com> | 2020-09-24 15:16:00 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 15:16:00 +1000 |
commit | 5f23f2121664cb84678c305de12497defecf6d7e (patch) | |
tree | 84eebf026d46c5f98553b1fa9c8240fe53f9fa03 /lib/python/qmk/cli/doctor.py | |
parent | 086c9c714e0cf8b320d603c088e715dc199e6a39 (diff) | |
download | qmk_firmware-5f23f2121664cb84678c305de12497defecf6d7e.tar.gz qmk_firmware-5f23f2121664cb84678c305de12497defecf6d7e.zip |
CLI/Doctor: Print QMK_HOME (#10398)
Diffstat (limited to 'lib/python/qmk/cli/doctor.py')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index 4d7ba5218..920615396 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py | |||
@@ -10,6 +10,7 @@ from pathlib import Path | |||
10 | 10 | ||
11 | from milc import cli | 11 | from milc import cli |
12 | from qmk import submodules | 12 | from qmk import submodules |
13 | from qmk.constants import QMK_FIRMWARE | ||
13 | from qmk.questions import yesno | 14 | from qmk.questions import yesno |
14 | from qmk.commands import run | 15 | from qmk.commands import run |
15 | 16 | ||
@@ -291,6 +292,8 @@ def doctor(cli): | |||
291 | cli.log.error('Unsupported OS detected: %s', platform_id) | 292 | cli.log.error('Unsupported OS detected: %s', platform_id) |
292 | ok = False | 293 | ok = False |
293 | 294 | ||
295 | cli.log.info('QMK home: {fg_cyan}%s', QMK_FIRMWARE) | ||
296 | |||
294 | # Make sure the basic CLI tools we need are available and can be executed. | 297 | # Make sure the basic CLI tools we need are available and can be executed. |
295 | bin_ok = check_binaries() | 298 | bin_ok = check_binaries() |
296 | 299 | ||