aboutsummaryrefslogtreecommitdiff
path: root/rh/hooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'rh/hooks.py')
-rw-r--r--rh/hooks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rh/hooks.py b/rh/hooks.py
index 457a440..162dd6b 100644
--- a/rh/hooks.py
+++ b/rh/hooks.py
@@ -1012,7 +1012,7 @@ def check_android_test_mapping(project, commit, _desc, diff, options=None):
def check_aidl_format(project, commit, _desc, diff, options=None):
"""Checks that AIDL files are formatted with aidl-format."""
# All *.aidl files except for those under aidl_api directory.
- filtered = _filter_diff(diff, [r'\.aidl$'], [r'/aidl_api/'])
+ filtered = _filter_diff(diff, [r'\.aidl$'], [r'(^|/)aidl_api/'])
if not filtered:
return None
aidl_format = options.tool_path('aidl-format')