diff options
Diffstat (limited to 'lib/python/qmk/commands.py')
-rw-r--r-- | lib/python/qmk/commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py index 5a6e60988..4db4667a8 100644 --- a/lib/python/qmk/commands.py +++ b/lib/python/qmk/commands.py | |||
@@ -7,6 +7,7 @@ import subprocess | |||
7 | import shlex | 7 | import shlex |
8 | import shutil | 8 | import shutil |
9 | 9 | ||
10 | from milc import cli | ||
10 | import qmk.keymap | 11 | import qmk.keymap |
11 | 12 | ||
12 | 13 | ||
@@ -83,4 +84,6 @@ def run(command, *args, **kwargs): | |||
83 | safecmd = ' '.join(safecmd) | 84 | safecmd = ' '.join(safecmd) |
84 | command = [os.environ['SHELL'], '-c', safecmd] | 85 | command = [os.environ['SHELL'], '-c', safecmd] |
85 | 86 | ||
87 | cli.log.debug('Running command: %s', command) | ||
88 | |||
86 | return subprocess.run(command, *args, **kwargs) | 89 | return subprocess.run(command, *args, **kwargs) |