summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-05-09 17:15:32 +0000
committerQMK Bot <hello@qmk.fm>2021-05-09 17:15:32 +0000
commitad1244e2cf0df975073eaac1343d74241bbf934b (patch)
treef173d3186ef555a5173a4ea8e2c0d9f72d934063 /lib
parent62c3e3d11f6956b34966a320cb6897195a2428be (diff)
parent6c5e94061c05c94a2404d4edcca4882cdfca844e (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-rwxr-xr-xlib/python/qmk/cli/multibuild.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/multibuild.py b/lib/python/qmk/cli/multibuild.py
index 1f3a097704..517513fc66 100755
--- a/lib/python/qmk/cli/multibuild.py
+++ b/lib/python/qmk/cli/multibuild.py
@@ -16,6 +16,7 @@ def _make_rules_mk_filter(key, value):
def _rules_mk_filter(keyboard_name):
rules_mk = qmk.keyboard.rules_mk(keyboard_name)
return True if key in rules_mk and rules_mk[key].lower() == str(value).lower() else False
+
return _rules_mk_filter
@@ -69,7 +70,9 @@ 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 should not care about the formatting of the Makefile
)
cli.run([make_cmd, '-j', str(cli.args.parallel), '-f', makefile, 'all'], capture_output=False, text=False)