aboutsummaryrefslogtreecommitdiffstats
path: root/build/scripts/clang_tidy.py
diff options
context:
space:
mode:
authornechda <nechda@yandex-team.com>2024-11-02 11:20:12 +0300
committernechda <nechda@yandex-team.com>2024-11-02 11:34:51 +0300
commitc1e88b2643346523bc487519ca3615245fe372d2 (patch)
tree01fe58134bf0cf4c26e720c621c64685a69cc6e2 /build/scripts/clang_tidy.py
parent73efac8142e4fb2b149797aadda491055f8fba02 (diff)
downloadydb-c1e88b2643346523bc487519ca3615245fe372d2.tar.gz
Add python wrapper for clang
commit_hash:0ac8fe42fec35bd7fd78602530d909a5369b4e0b
Diffstat (limited to 'build/scripts/clang_tidy.py')
-rw-r--r--build/scripts/clang_tidy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/scripts/clang_tidy.py b/build/scripts/clang_tidy.py
index c7636b8bf2..8db8b9d36b 100644
--- a/build/scripts/clang_tidy.py
+++ b/build/scripts/clang_tidy.py
@@ -96,7 +96,7 @@ def filter_cmd(cmd):
if not skip:
yield x
- if '/wrapcc.py' in x:
+ if '/retry_cc.py' in x:
skip = False
@@ -116,7 +116,7 @@ def find_header(p, h):
def main():
args, clang_cmd = parse_args()
- if '/wrapcc.py' in str(clang_cmd):
+ if '/retry_cc.py' in str(clang_cmd):
clang_cmd = list(filter_cmd(clang_cmd))
setup_script(args)
clang_tidy_bin = args.clang_tidy_bin