diff options
author | Zach White <skullydazed@gmail.com> | 2021-03-07 19:10:03 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-07 19:10:03 -0800 |
commit | b0069c5c05dac2c910d51ef7f3bf4133721a9c49 (patch) | |
tree | ea8a7afb278f0ab4adb2e5390ef952c569ce3592 /lib/python/qmk/commands.py | |
parent | 7d45b7f269ddcfc1b33a55d8fed77bdfbf81ba8b (diff) | |
download | qmk_firmware-b0069c5c05dac2c910d51ef7f3bf4133721a9c49.tar.gz qmk_firmware-b0069c5c05dac2c910d51ef7f3bf4133721a9c49.zip |
Begin the process of deprecating bin/qmk in favor of the global cli (#12109)
* Begin the process of deprecating bin/qmk in favor of the global cli
* Correctly set the qmk bin
Diffstat (limited to 'lib/python/qmk/commands.py')
-rw-r--r-- | lib/python/qmk/commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py index 3c6f0d001d..233d1034b4 100644 --- a/lib/python/qmk/commands.py +++ b/lib/python/qmk/commands.py @@ -180,6 +180,7 @@ def compile_configurator_json(user_keymap, bootloader=None, parallel=1, **env_va f'VERBOSE={verbose}', f'COLOR={color}', 'SILENT=false', + 'QMK_BIN=qmk', ]) return make_command |