Skip to content

Commit

Permalink
[Bugfix] qmk {compile, flash} return code (#22639)
Browse files Browse the repository at this point in the history
  • Loading branch information
elpekenin committed Dec 13, 2023
1 parent 68afa1e commit 9c93f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ def compile(cli):
return False

target.configure(parallel=cli.config.compile.parallel, clean=cli.args.clean, compiledb=cli.args.compiledb)
target.compile(cli.args.target, dry_run=cli.args.dry_run, **envs)
return target.compile(cli.args.target, dry_run=cli.args.dry_run, **envs)
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/flash.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ def flash(cli):
return False

target.configure(parallel=cli.config.flash.parallel, clean=cli.args.clean)
target.compile(cli.args.bootloader, dry_run=cli.args.dry_run, **envs)
return target.compile(cli.args.bootloader, dry_run=cli.args.dry_run, **envs)

0 comments on commit 9c93f36

Please sign in to comment.