fix: use the same path for llvm, clangformat, clangtidy

This commit is contained in:
Amin Yahyaabadi 2022-04-26 22:04:41 -07:00
parent 3e61953947
commit 5ac28d17ae
3 changed files with 6 additions and 3 deletions

2
dist/setup_cpp.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -161,8 +161,11 @@ export async function main(args: string[]): Promise<number> {
// get the setup function
const setupFunction = setups[tool]
// the tool installation directory (for the functions that ue it)
const setupDir = join(setupCppDir, ["llvm", "clangformat", "clangtidy"].includes(tool) ? "llvm" : tool)
// eslint-disable-next-line no-await-in-loop
installationInfo = await setupFunction(getVersion(tool, version), join(setupCppDir, tool), arch)
installationInfo = await setupFunction(getVersion(tool, version), setupDir, arch)
}
// preparing a report string
successMessages.push(getSuccessMessage(tool, installationInfo))