diff options
Diffstat (limited to 'lib/python/qmk/cli')
-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 57ac0835b..bad864f72 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 | ||
@@ -324,6 +325,8 @@ def doctor(cli): | |||
324 | cli.log.error('Unsupported OS detected: %s', platform_id) | 325 | cli.log.error('Unsupported OS detected: %s', platform_id) |
325 | ok = False | 326 | ok = False |
326 | 327 | ||
328 | cli.log.info('QMK home: {fg_cyan}%s', QMK_FIRMWARE) | ||
329 | |||
327 | # Make sure the basic CLI tools we need are available and can be executed. | 330 | # Make sure the basic CLI tools we need are available and can be executed. |
328 | bin_ok = check_binaries() | 331 | bin_ok = check_binaries() |
329 | 332 | ||