Extract correct dir for latest

This commit is contained in:
Kevin Stillhammer 2024-08-24 09:01:13 +02:00
parent 4bab96ca10
commit 5654f20383
No known key found for this signature in database
3 changed files with 2 additions and 2 deletions

2
dist/setup/index.js generated vendored
View file

@ -85420,7 +85420,7 @@ function downloadLatest(platform, arch, checkSum, githubToken) {
else {
const extractedDir = yield tc.extractTar(downloadPath);
uvDir = path.join(extractedDir, artifact);
uvExecutablePath = path.join(extractedDir, 'uv');
uvExecutablePath = path.join(uvDir, 'uv');
}
const version = yield getVersion(uvExecutablePath);
yield (0, checksum_1.validateChecksum)(checkSum, downloadPath, arch, platform, version);

View file

@ -35,7 +35,7 @@ export async function downloadLatest(
} else {
const extractedDir = await tc.extractTar(downloadPath)
uvDir = path.join(extractedDir, artifact)
uvExecutablePath = path.join(extractedDir, 'uv')
uvExecutablePath = path.join(uvDir, 'uv')
}
const version = await getVersion(uvExecutablePath)
await validateChecksum(checkSum, downloadPath, arch, platform, version)