From e62fc866dbac6b558b328be14e8096835c3aadc7 Mon Sep 17 00:00:00 2001 From: Nick Brassel Date: Wed, 15 Mar 2023 08:31:10 +1100 Subject: Let's use workflows to parallelise the builds. (#20120) * Let's use workflows to parallelise the builds. * Nofail if files aren't present. * Formatting. --- lib/python/qmk/cli/mass_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/python/qmk') 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) -- cgit v1.2.3