diff options
author | QMK Bot <hello@qmk.fm> | 2022-02-02 04:31:44 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-02-02 04:31:44 +0000 |
commit | 7d38aec3ac754c544489f1c1a956dcd49d9a3410 (patch) | |
tree | 94dfd53adc5f79990fe12ba7143b5c95858d7c92 /lib/python/qmk/cli | |
parent | 6e2b03cf6901a6bbd146c074e8e9d9160358c6d9 (diff) | |
parent | c9f88d7c67e00b3689fd4afd7630bc7fcd5b7ed4 (diff) | |
download | qmk_firmware-7d38aec3ac754c544489f1c1a956dcd49d9a3410.tar.gz qmk_firmware-7d38aec3ac754c544489f1c1a956dcd49d9a3410.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk/cli')
-rwxr-xr-x | lib/python/qmk/cli/doctor/main.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/doctor/main.py b/lib/python/qmk/cli/doctor/main.py index ed20f46d3f..2e5e221e8f 100755 --- a/lib/python/qmk/cli/doctor/main.py +++ b/lib/python/qmk/cli/doctor/main.py @@ -11,7 +11,7 @@ from milc.questions import yesno from qmk import submodules from qmk.constants import QMK_FIRMWARE, QMK_FIRMWARE_UPSTREAM from .check import CheckStatus, check_binaries, check_binary_versions, check_submodules -from qmk.commands import git_check_repo, git_get_branch, git_is_dirty, git_get_remotes, git_check_deviation, in_virtualenv +from qmk.commands import git_check_repo, git_get_branch, git_get_tag, git_is_dirty, git_get_remotes, git_check_deviation, in_virtualenv def os_tests(): @@ -47,6 +47,11 @@ def git_tests(): git_branch = git_get_branch() if git_branch: cli.log.info('Git branch: %s', git_branch) + + repo_version = git_get_tag() + if repo_version: + cli.log.info('Repo version: %s', repo_version) + git_dirty = git_is_dirty() if git_dirty: cli.log.warning('{fg_yellow}Git has unstashed/uncommitted changes.') |