1
0
Fork 0

fix the makefile snippet so flake8 and yapf don't fight (#12849)

This commit is contained in:
Zach White 2021-05-09 11:30:17 -07:00 committed by GitHub
parent 30aae6298b
commit 5c924efa04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)