aboutsummaryrefslogtreecommitdiff
path: root/bin/qmk
diff options
context:
space:
mode:
Diffstat (limited to 'bin/qmk')
-rwxr-xr-xbin/qmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/qmk b/bin/qmk
index dfd31e200..d4b584b10 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -38,7 +38,7 @@ with open('requirements.txt', 'r') as fd:
38 38
39# Figure out our version 39# Figure out our version
40command = ['git', 'describe', '--abbrev=6', '--dirty', '--always', '--tags'] 40command = ['git', 'describe', '--abbrev=6', '--dirty', '--always', '--tags']
41result = subprocess.run(command, universal_newlines=True, capture_output=True) 41result = subprocess.run(command, universal_newlines=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
42 42
43if result.returncode == 0: 43if result.returncode == 0:
44 os.environ['QMK_VERSION'] = 'QMK ' + result.stdout.strip() 44 os.environ['QMK_VERSION'] = 'QMK ' + result.stdout.strip()