diff options
| author | snermolaev <[email protected]> | 2025-06-21 07:31:35 +0300 |
|---|---|---|
| committer | snermolaev <[email protected]> | 2025-06-21 07:45:38 +0300 |
| commit | e49a9cd791ec787f817f98a7992deedb46478758 (patch) | |
| tree | a5c429dc90c11ec6bd912b23e27388427b6501d7 | |
| parent | ad5fab901d143e9d819679bd843944df69855106 (diff) | |
temporary crutch
commit_hash:0c488d042b864913c9d967a1aba4fb794ce1109f
| -rw-r--r-- | build/scripts/clang_tidy_arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/clang_tidy_arch.py b/build/scripts/clang_tidy_arch.py index cfceffef82b..6a4eabe76f8 100644 --- a/build/scripts/clang_tidy_arch.py +++ b/build/scripts/clang_tidy_arch.py @@ -15,7 +15,7 @@ def main(): inputs = unknown_args result_json = {} for inp in inputs: - if os.path.exists(inp) and inp.endswith(".tidyjson"): + if inp.endswith(".tidyjson") and not inp.endswith(".global.tidyjson") and os.path.exists(inp): with open(inp, 'r') as afile: file_content = afile.read().strip() if not file_content: |
