summaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorZach White <skullydazed@gmail.com>2021-01-02 09:27:35 -0800
committerGitHub <noreply@github.com>2021-01-02 17:27:35 +0000
commitc07543133a092039c7eae0cead6c9ee3badcc7dc (patch)
tree4c261f9db906e8c986e5bf274e41f650b5b4201d /lib/python
parent2e9d0919600e4b834a4e48c1673fe638c4b92eab (diff)
Return the make exit code for qmk compile and flash (#11402)
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/qmk/cli/compile.py3
-rw-r--r--lib/python/qmk/cli/flash.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/python/qmk/cli/compile.py b/lib/python/qmk/cli/compile.py
index 341f365f8c..daee597d8e 100755
--- a/lib/python/qmk/cli/compile.py
+++ b/lib/python/qmk/cli/compile.py
@@ -48,7 +48,8 @@ def compile(cli):
cli.log.info('Compiling keymap with {fg_cyan}%s', ' '.join(command))
if not cli.args.dry_run:
cli.echo('\n')
- subprocess.run(command)
+ compile = subprocess.run(command)
+ return compile.returncode
else:
cli.log.error('You must supply a configurator export, both `--keyboard` and `--keymap`, or be in a directory for a keyboard or keymap.')
diff --git a/lib/python/qmk/cli/flash.py b/lib/python/qmk/cli/flash.py
index cefb9ca31a..d720d42e71 100644
--- a/lib/python/qmk/cli/flash.py
+++ b/lib/python/qmk/cli/flash.py
@@ -81,7 +81,8 @@ def flash(cli):
cli.log.info('Compiling keymap with {fg_cyan}%s', ' '.join(command))
if not cli.args.dry_run:
cli.echo('\n')
- subprocess.run(command)
+ compile = subprocess.run(command)
+ return compile.returncode
else:
cli.log.error('You must supply a configurator export, both `--keyboard` and `--keymap`, or be in a directory for a keyboard or keymap.')