aboutsummaryrefslogtreecommitdiff
path: root/bin/qmk
diff options
context:
space:
mode:
Diffstat (limited to 'bin/qmk')
-rwxr-xr-xbin/qmk3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/qmk b/bin/qmk
index a3c1be328..a2af2951c 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -73,8 +73,11 @@ def main():
73 """ 73 """
74 # Change to the root of our checkout 74 # Change to the root of our checkout
75 os.environ['ORIG_CWD'] = os.getcwd() 75 os.environ['ORIG_CWD'] = os.getcwd()
76 os.environ['DEPRECATED_BIN_QMK'] = '1'
76 os.chdir(qmk_dir) 77 os.chdir(qmk_dir)
77 78
79 print('Warning: The bin/qmk script is being deprecated. Please install the QMK CLI: python3 -m pip install qmk', file=sys.stderr)
80
78 # Import the subcommands 81 # Import the subcommands
79 import qmk.cli # noqa 82 import qmk.cli # noqa
80 83