~ruther/qmk_firmware

201dc6d024929ce574d82037f8b58cc7697813a9 — QMK Bot 4 years ago 2f367ba + 5c924ef
Merge remote-tracking branch 'origin/master' into develop
1 files changed, 3 insertions(+), 3 deletions(-)

M lib/python/qmk/cli/multibuild.py
M lib/python/qmk/cli/multibuild.py => lib/python/qmk/cli/multibuild.py +3 -3
@@ 57,6 57,7 @@ def multibuild(cli):
    with open(makefile, "w") as f:
        for keyboard_name in keyboard_list:
            keyboard_safe = keyboard_name.replace('/', '_')
            # yapf: disable
            f.write(
                f"""\
all: {keyboard_safe}_binary


@@ 70,9 71,8 @@ all: {keyboard_safe}_binary
		|| printf "Build %-64s \e[1;32m[OK]\e[0m\\n" "{keyboard_name}:default"
	@rm -f "{QMK_FIRMWARE}/.build/build.log.{keyboard_safe}" || true

"""

                # noqa: yapf should not care about the formatting of the Makefile
"""# noqa
            )
            # yapf: enable

    cli.run([make_cmd, '-j', str(cli.args.parallel), '-f', makefile, 'all'], capture_output=False, text=False)