summaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-05-09 18:30:52 +0000
committerQMK Bot <hello@qmk.fm>2021-05-09 18:30:52 +0000
commit201dc6d024929ce574d82037f8b58cc7697813a9 (patch)
treeb8e2bab4016f8b6dba29e2c2dfb16f2cf099cbb8 /lib/python
parent2f367bab98c3f123fc24044fa637ecb32a9b43ac (diff)
parent5c924efa04c072d0d40c172ede86d5a7a68456ab (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/qmk/cli/multibuild.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/qmk/cli/multibuild.py b/lib/python/qmk/cli/multibuild.py
index 517513fc66..a4f0a0cc03 100755
--- a/lib/python/qmk/cli/multibuild.py
+++ b/lib/python/qmk/cli/multibuild.py
@@ -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)