Fix Website 404 and Format script error message (#1161)

* Fix Website 404

* format script fix
This commit is contained in:
Derek Hensley
2023-02-07 19:29:17 -05:00
committed by GitHub
parent ab8d34b8dc
commit 38edda8508
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ def get_tidy_version(tidy_executable: str):
CLANG_FORMAT = get_clang_executable([f"clang-format-{CLANG_VER}"])
if CLANG_FORMAT is None:
sys.exit(f"Error: clang-format-{CLANG_VER} found")
sys.exit(f"Error: clang-format-{CLANG_VER} not found")
CLANG_TIDY = get_clang_executable([f"clang-tidy-{CLANG_VER}", "clang-tidy"])
if CLANG_TIDY is None: