diff options
| author | Nick Brassel | 2023-11-28 06:39:48 +0100 |
|---|---|---|
| committer | Nick Brassel | 2023-11-28 06:40:47 +0100 |
| commit | 0115951de12bd4c798a43a380651c34552552e85 (patch) | |
| tree | 62999011ae782d93aa6dc9c889615db2a840cafc /lib/python/qmk/constants.py | |
| parent | 0379d1f59e58cefa18cdb72ba1b77507d1108ae6 (diff) | |
| parent | 4d99e0a23cff02f4c6e55e093b5de08a9be0df7c (diff) | |
`develop` -> `master`, 2023q4 edition
Diffstat (limited to 'lib/python/qmk/constants.py')
| -rw-r--r-- | lib/python/qmk/constants.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/python/qmk/constants.py b/lib/python/qmk/constants.py index 1967441fc8..90e4452f2b 100644 --- a/lib/python/qmk/constants.py +++ b/lib/python/qmk/constants.py @@ -4,9 +4,17 @@ from os import environ from datetime import date from pathlib import Path +from qmk.userspace import detect_qmk_userspace + # The root of the qmk_firmware tree. QMK_FIRMWARE = Path.cwd() +# The detected userspace tree +QMK_USERSPACE = detect_qmk_userspace() + +# Whether or not we have a separate userspace directory +HAS_QMK_USERSPACE = True if QMK_USERSPACE is not None else False + # Upstream repo url QMK_FIRMWARE_UPSTREAM = 'qmk/qmk_firmware' |