diff options
author | Joel Challis <git@zvecr.com> | 2022-03-18 16:02:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 16:02:24 +0000 |
commit | ed773ab73cab83b842dc62ff94ffb337ec66a5f3 (patch) | |
tree | 9a731986f5a005370accac2f66047258d434d7c2 /lib/python/qmk/cli/doctor/check.py | |
parent | e5823b56501598c39d3f57719cf32f344212ede6 (diff) |
Relocate CLI git interactions (#16682)
Diffstat (limited to 'lib/python/qmk/cli/doctor/check.py')
-rw-r--r-- | lib/python/qmk/cli/doctor/check.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/python/qmk/cli/doctor/check.py b/lib/python/qmk/cli/doctor/check.py index 2d691b64b0..8a0422ba72 100644 --- a/lib/python/qmk/cli/doctor/check.py +++ b/lib/python/qmk/cli/doctor/check.py @@ -7,7 +7,6 @@ from subprocess import DEVNULL from milc import cli from qmk import submodules -from qmk.constants import QMK_FIRMWARE class CheckStatus(Enum): @@ -150,14 +149,3 @@ def is_executable(command): cli.log.error("{fg_red}Can't run `%s %s`", command, version_arg) return False - - -def check_git_repo(): - """Checks that the .git directory exists inside QMK_HOME. - - This is a decent enough indicator that the qmk_firmware directory is a - proper Git repository, rather than a .zip download from GitHub. - """ - dot_git = QMK_FIRMWARE / '.git' - - return CheckStatus.OK if dot_git.exists() else CheckStatus.WARNING |