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 /bin/qmk | |
parent | 7d45b7f269ddcfc1b33a55d8fed77bdfbf81ba8b (diff) |
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 'bin/qmk')
-rwxr-xr-x | bin/qmk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -75,6 +75,8 @@ def main(): os.environ['ORIG_CWD'] = os.getcwd() os.chdir(qmk_dir) + print('Warning: The bin/qmk script is being deprecated. Please install the QMK CLI: python3 -m pip install qmk', file=sys.stderr) + # Import the subcommands import qmk.cli # noqa |