From 3285659690c79807f96021002e0dc336c99c73f2 Mon Sep 17 00:00:00 2001
From: Albert Y <76888457+filterpaper@users.noreply.github.com>
Date: Wed, 27 Jul 2022 17:29:10 +0800
Subject: [PATCH] CLI compatibility for MacOS (#17811)

---
 lib/python/qmk/submodules.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python/qmk/submodules.py b/lib/python/qmk/submodules.py
index 3cb232a7b50..52efa602a06 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