diff options
author | Nick Brassel <nick@tzarc.org> | 2023-03-15 08:31:10 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 08:31:10 +1100 |
commit | e62fc866dbac6b558b328be14e8096835c3aadc7 (patch) | |
tree | 2cc074c7d9b3b4f66fb25ccd1a617df95255d748 /lib/python/qmk | |
parent | c91296f001a802ff34f23b71c2e673da4dca2f0b (diff) |
Let's use workflows to parallelise the builds. (#20120)
* Let's use workflows to parallelise the builds.
* Nofail if files aren't present.
* Formatting.
Diffstat (limited to 'lib/python/qmk')
-rwxr-xr-x | lib/python/qmk/cli/mass_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/mass_compile.py b/lib/python/qmk/cli/mass_compile.py index 2821a60c87..810350b954 100755 --- a/lib/python/qmk/cli/mass_compile.py +++ b/lib/python/qmk/cli/mass_compile.py @@ -106,7 +106,7 @@ def mass_compile(cli): def _make_filter(k, v): expr = fnmatch.translate(v) - rule = re.compile(expr, re.IGNORECASE) + rule = re.compile(f'^{expr}$', re.IGNORECASE) def f(e): lhs = e[2].get(k) |