diff options
Diffstat (limited to 'bin/qmk')
-rwxr-xr-x | bin/qmk | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -2,10 +2,8 @@ | |||
2 | """CLI wrapper for running QMK commands. | 2 | """CLI wrapper for running QMK commands. |
3 | """ | 3 | """ |
4 | import os | 4 | import os |
5 | import subprocess | ||
6 | import sys | 5 | import sys |
7 | from importlib.util import find_spec | 6 | from importlib.util import find_spec |
8 | from time import strftime | ||
9 | 7 | ||
10 | # Add the QMK python libs to our path | 8 | # Add the QMK python libs to our path |
11 | script_dir = os.path.dirname(os.path.realpath(__file__)) | 9 | script_dir = os.path.dirname(os.path.realpath(__file__)) |
@@ -35,16 +33,6 @@ with open(os.path.join(qmk_dir, 'requirements.txt'), 'r') as fd: | |||
35 | print('Please run `pip3 install -r requirements.txt` to install the python dependencies.') | 33 | print('Please run `pip3 install -r requirements.txt` to install the python dependencies.') |
36 | exit(255) | 34 | exit(255) |
37 | 35 | ||
38 | # Figure out our version | ||
39 | # TODO(skullydazed/anyone): Find a method that doesn't involve git. This is slow in docker and on windows. | ||
40 | command = ['git', 'describe', '--abbrev=6', '--dirty', '--always', '--tags'] | ||
41 | result = subprocess.run(command, universal_newlines=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) | ||
42 | |||
43 | if result.returncode == 0: | ||
44 | os.environ['QMK_VERSION'] = result.stdout.strip() | ||
45 | else: | ||
46 | os.environ['QMK_VERSION'] = 'nogit-' + strftime('%Y-%m-%d-%H:%M:%S') + '-dirty' | ||
47 | |||
48 | # Setup the CLI | 36 | # Setup the CLI |
49 | import milc # noqa | 37 | import milc # noqa |
50 | 38 | ||