summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlbert Y <76888457+filterpaper@users.noreply.github.com>2023-03-21 16:25:08 +0800
committerGitHub <noreply@github.com>2023-03-21 01:25:08 -0700
commit0e1e543836653c48fb6ddf6f57adeb62ed8318d8 (patch)
tree370fe25ab4b59b19da896a6333968579359fff6d /lib
parent0dad14dc819adc19e94c913de79638a8ec25e139 (diff)
Increase verbosity of make command (#20172)
Diffstat (limited to 'lib')
-rw-r--r--lib/python/qmk/commands.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py
index 5561a354c5..f5eac4bf0e 100644
--- a/lib/python/qmk/commands.py
+++ b/lib/python/qmk/commands.py
@@ -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]