Refactor qmk compile-json
to qmk compile
(#6592)
This commit is contained in:
parent
c289a4cb20
commit
f22c5c17b6
5 changed files with 66 additions and 50 deletions
2
bin/qmk
2
bin/qmk
|
@ -38,7 +38,7 @@ with open('requirements.txt', 'r') as fd:
|
|||
|
||||
# Figure out our version
|
||||
command = ['git', 'describe', '--abbrev=6', '--dirty', '--always', '--tags']
|
||||
result = subprocess.run(command, universal_newlines=True, capture_output=True)
|
||||
result = subprocess.run(command, universal_newlines=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
|
||||
if result.returncode == 0:
|
||||
os.environ['QMK_VERSION'] = 'QMK ' + result.stdout.strip()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue