Skip to content

Commit aab5f43

Browse files
committed
fix(filter_include_changes): more accurate MOJOM_HEADER_REGEX
1 parent 074c87a commit aab5f43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

filter_include_changes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
GENERATED_FILE_REGEX = re.compile(r"^out/[\w-]+/gen/.*$")
19-
MOJOM_HEADER_REGEX = re.compile(r"^.*.mojom[^.]*.h$")
19+
MOJOM_HEADER_REGEX = re.compile(r"^.*\.mojom[^\.]*\.h$")
2020
THIRD_PARTY_REGEX = re.compile(r"^(?:third_party\/(?!blink)|v8).*$")
2121

2222

0 commit comments

Comments
 (0)