summaryrefslogtreecommitdiff
path: root/lib/python/qmk/constants.py
diff options
context:
space:
mode:
authorErovia <Erovia@users.noreply.github.com>2021-07-10 16:04:50 +0100
committerGitHub <noreply@github.com>2021-07-10 16:04:50 +0100
commite05f9c4a08cef384989cd20ebe27b66622912055 (patch)
tree6f12e99f42b031a986d9b77638723beaff51e6d1 /lib/python/qmk/constants.py
parent789be4f1145c56253629808967e31be14c99820e (diff)
CLI: Add git and venv info to doctor's output (#13405)
Most of the checks are saved from zvecr's retired 'up/status' subcommand PR.
Diffstat (limited to 'lib/python/qmk/constants.py')
-rw-r--r--lib/python/qmk/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/constants.py b/lib/python/qmk/constants.py
index be5ce5d4ed..1078f4ad5e 100644
--- a/lib/python/qmk/constants.py
+++ b/lib/python/qmk/constants.py
@@ -6,6 +6,9 @@ from pathlib import Path
# The root of the qmk_firmware tree.
QMK_FIRMWARE = Path.cwd()
+# Upstream repo url
+QMK_FIRMWARE_UPSTREAM = 'qmk/qmk_firmware'
+
# This is the number of directories under `qmk_firmware/keyboards` that will be traversed. This is currently a limitation of our make system.
MAX_KEYBOARD_SUBFOLDERS = 5