summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-03-14 21:31:50 +0000
committerQMK Bot <hello@qmk.fm>2023-03-14 21:31:50 +0000
commit291834b162f070fb76d2f50d360b9943b919cd61 (patch)
treeb8e283a2d2603b5daa84b25f4641489e766e893c /lib
parent1fa8dbc51688315f07ecbf68bc7fcbee7a5d2ee9 (diff)
parente62fc866dbac6b558b328be14e8096835c3aadc7 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-rwxr-xr-xlib/python/qmk/cli/mass_compile.py2
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)