From 9f5487406db21f1fd26ea97cb90b082aa92a028a 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 87326e8723..5647133b40 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)