diff options
author | Pablo MartÃnez <58857054+elpekenin@users.noreply.github.com> | 2023-12-15 19:48:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-16 05:48:52 +1100 |
commit | 52c794b9fc1d2265ed590cd724813a168c20305b (patch) | |
tree | ed1ad320b30d557cc7ab8e00bc2eee02a24881c7 /lib/python/qmk/cli | |
parent | 4b3f9b8b3a41c96f788564b9931535b120216ea3 (diff) |
Initial (#22671)
Diffstat (limited to 'lib/python/qmk/cli')
-rwxr-xr-x | lib/python/qmk/cli/mass_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/mass_compile.py b/lib/python/qmk/cli/mass_compile.py index 623a1ac476..69b9103fdc 100755 --- a/lib/python/qmk/cli/mass_compile.py +++ b/lib/python/qmk/cli/mass_compile.py @@ -25,7 +25,7 @@ def mass_compile_targets(targets: List[BuildTarget], clean: bool, dry_run: bool, if dry_run: cli.log.info('Compilation targets:') for target in sorted(targets, key=lambda t: (t.keyboard, t.keymap)): - cli.log.info(f"{{fg_cyan}}qmk compile -kb {target[0]} -km {target[1]}{{fg_reset}}") + cli.log.info(f"{{fg_cyan}}qmk compile -kb {target.keyboard} -km {target.keymap}{{fg_reset}}") else: if clean: cli.run([make_cmd, 'clean'], capture_output=False, stdin=DEVNULL) |