We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6279bb commit d1f024aCopy full SHA for d1f024a
scripts/run-clang-tidy.py
@@ -19,7 +19,7 @@
19
20
def find_project_root() -> Path:
21
"""Find the project root directory by looking for CMakeLists.txt."""
22
- current = Path(__file__).parent
+ current = Path(__file__).parent.resolve()
23
while current != current.parent:
24
if (current / "CMakeLists.txt").exists():
25
return current
0 commit comments