summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-07-27 09:29:50 +0000
committerQMK Bot <hello@qmk.fm>2022-07-27 09:29:50 +0000
commit00c1653a15f2f97f86c39f1bb6e5de6f368ea41c (patch)
tree458bb178f88ac331cad28bcdfc17f5c9551928e6 /lib
parent59d940c9f33eb95691c40187c9f1e9a648de35cb (diff)
parent3285659690c79807f96021002e0dc336c99c73f2 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-rw-r--r--lib/python/qmk/submodules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/submodules.py b/lib/python/qmk/submodules.py
index 3cb232a7b5..52efa602a0 100644
--- a/lib/python/qmk/submodules.py
+++ b/lib/python/qmk/submodules.py
@@ -51,7 +51,7 @@ def status():
submodules[submodule]['last_log_timestamp'] = r[2] if len(r) > 2 else ''
submodules[submodule]['last_log_message'] = r[3] if len(r) > 3 else ''
- submodule_tags = cli.run(['git', 'submodule', '-q', 'foreach', 'echo -n "$sm_path "; git describe --tags'])
+ submodule_tags = cli.run(['git', 'submodule', '-q', 'foreach', '\'echo $sm_path `git describe --tags`\''])
for log_line in submodule_tags.stdout.split('\n'):
if not log_line:
continue