Consistently use bin/qmk when that script is called (#12286)

* Pass QMK_BIN down to build_keyboard.mk

* choose the correct qmk script
This commit is contained in:
Zach White 2021-03-18 16:10:40 -07:00 committed by GitHub
parent 90b1e271a8
commit f2715a0593
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -73,6 +73,7 @@ def main():
"""
# Change to the root of our checkout
os.environ['ORIG_CWD'] = os.getcwd()
os.environ['DEPRECATED_BIN_QMK'] = '1'
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)