From e26f20e7451f9c1e23104e39989250e524e0bbb0 Mon Sep 17 00:00:00 2001 From: Elena Uziunaite Date: Tue, 19 Nov 2024 16:26:10 +0000 Subject: [PATCH] Adapt paths for scripts/quiet Signed-off-by: Elena Uziunaite --- tests/scripts/check_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/check_files.py b/tests/scripts/check_files.py index 2a5d64b79f..5a6eda2b86 100755 --- a/tests/scripts/check_files.py +++ b/tests/scripts/check_files.py @@ -173,7 +173,7 @@ class ShebangIssueTracker(FileIssueTracker): b'sh': 'sh', } - path_exemptions = re.compile(r'tests/scripts/quiet/.*') + path_exemptions = re.compile(r'framework/scripts/quiet/.*') def is_valid_shebang(self, first_line, filepath): m = re.match(self._shebang_re, first_line)