Skip to content

Commit

Permalink
Increase verbosity of make command (#20172)
Browse files Browse the repository at this point in the history
  • Loading branch information
filterpaper authored Mar 21, 2023
1 parent 0dad14d commit 0e1e543
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/python/qmk/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ def create_make_target(target, dry_run=False, parallel=1, **env_vars):
for key, value in env_vars.items():
env.append(f'{key}={value}')

if cli.config.general.verbose:
env.append('VERBOSE=true')

return [make_cmd, *(['-n'] if dry_run else []), *get_make_parallel_args(parallel), *env, target]


Expand Down

0 comments on commit 0e1e543

Please sign in to comment.