Skip to content

Commit

Permalink
Increase verbosity of make command (qmk#20172)
Browse files Browse the repository at this point in the history
  • Loading branch information
filterpaper authored and nicsuzor committed Mar 28, 2023
1 parent 3bf7bc4 commit 3771bba
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 3771bba

Please sign in to comment.