Browse Source

Merge remote-tracking branch 'origin/master' into develop

pull/22656/head
QMK Bot 6 months ago
parent
commit
f6774f2f1e
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      lib/python/qmk/cli/compile.py
  2. +1
    -1
      lib/python/qmk/cli/flash.py

+ 1
- 1
lib/python/qmk/cli/compile.py View File

@ -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)

+ 1
- 1
lib/python/qmk/cli/flash.py View File

@ -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)

Loading…
Cancel
Save