diff options
author | QMK Bot <hello@qmk.fm> | 2023-04-04 05:10:36 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2023-04-04 05:10:36 +0000 |
commit | 0e7acb777a75608524fe1de5e0f9359aeec88912 (patch) | |
tree | 8886e5e84f57ce7c3f06289ef6ecb352c482b740 /lib/python | |
parent | 976317df3cb2cd9b8772cb852dd66314f6856ed1 (diff) | |
parent | 687883cf7d68deedfd1678af1195c4d6f35456df (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python')
-rwxr-xr-x | lib/python/qmk/cli/mass_compile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/mass_compile.py b/lib/python/qmk/cli/mass_compile.py index 909118790c..52c1cae4c2 100755 --- a/lib/python/qmk/cli/mass_compile.py +++ b/lib/python/qmk/cli/mass_compile.py @@ -9,6 +9,7 @@ from milc import cli from qmk.constants import QMK_FIRMWARE from qmk.commands import _find_make, get_make_parallel_args +from qmk.keyboard import resolve_keyboard from qmk.search import search_keymap_targets @@ -39,7 +40,7 @@ def mass_compile(cli): makefile = builddir / 'parallel_kb_builds.mk' if len(cli.args.builds) > 0: - targets = [(e[0], e[1]) for e in [b.split(':') for b in cli.args.builds]] + targets = list(sorted(set([(resolve_keyboard(e[0]), e[1]) for e in [b.split(':') for b in cli.args.builds]]))) else: targets = search_keymap_targets(cli.args.keymap, cli.args.filter) |