logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 52c794b9fc1d2265ed590cd724813a168c20305b
parent 4b3f9b8b3a41c96f788564b9931535b120216ea3
Author: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Date:   Fri, 15 Dec 2023 19:48:52 +0100

Initial (#22671)


Diffstat:

Mlib/python/qmk/cli/mass_compile.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)