diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-04-27 12:38:13 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-04-27 12:38:13 +0300 |
commit | f3628165c65d7e454e921a6ab119f66b45bb926c (patch) | |
tree | fc37135009a93cfc3d2dbc3d7ae4c7764efad8b7 | |
parent | 984720f7c69e235a53896e28cf9f2c8db672b583 (diff) | |
download | ydb-f3628165c65d7e454e921a6ab119f66b45bb926c.tar.gz |
intermediate changes
ref:38686afc9c910ac2a93fbf8f1d7306328614f87b
-rw-r--r-- | build/scripts/clang_tidy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/scripts/clang_tidy.py b/build/scripts/clang_tidy.py index eb1b690ee9..467f6ceeff 100644 --- a/build/scripts/clang_tidy.py +++ b/build/scripts/clang_tidy.py @@ -147,6 +147,7 @@ def main(): cmd += ["--checks", args.checks] res = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = res.communicate() + out = out.replace(args.source_root, "$(SOURCE_ROOT)") exit_code = res.returncode profile = load_profile(profile_tmpdir) testing_src = os.path.relpath(args.testing_src, args.source_root) |