diff options
Diffstat (limited to 'lib/python/qmk/constants.py')
-rw-r--r-- | lib/python/qmk/constants.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/constants.py b/lib/python/qmk/constants.py index be5ce5d4e..1078f4ad5 100644 --- a/lib/python/qmk/constants.py +++ b/lib/python/qmk/constants.py | |||
@@ -6,6 +6,9 @@ from pathlib import Path | |||
6 | # The root of the qmk_firmware tree. | 6 | # The root of the qmk_firmware tree. |
7 | QMK_FIRMWARE = Path.cwd() | 7 | QMK_FIRMWARE = Path.cwd() |
8 | 8 | ||
9 | # Upstream repo url | ||
10 | QMK_FIRMWARE_UPSTREAM = 'qmk/qmk_firmware' | ||
11 | |||
9 | # This is the number of directories under `qmk_firmware/keyboards` that will be traversed. This is currently a limitation of our make system. | 12 | # This is the number of directories under `qmk_firmware/keyboards` that will be traversed. This is currently a limitation of our make system. |
10 | MAX_KEYBOARD_SUBFOLDERS = 5 | 13 | MAX_KEYBOARD_SUBFOLDERS = 5 |
11 | 14 | ||