Skip to content

Commit 722b251

Browse files
authored
[Github][CI] fix invalid path in clang-tidy helper (#160014)
This path was left untouched after refactoring made in #159967 which broke clang-tidy runner.
1 parent 6ac2db2 commit 722b251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/git/code-lint-helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def run_clang_tidy(changed_files: List[str], args: LintArgs) -> Optional[str]:
193193
return None
194194

195195
tidy_diff_cmd = [
196-
"code-lint-tools/clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py",
196+
"clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py",
197197
"-path",
198198
args.build_path,
199199
"-p1",

0 commit comments

Comments
 (0)