mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-04-05 23:25:19 -04:00
Extract correct dir for latest
This commit is contained in:
parent
4bab96ca10
commit
5654f20383
3 changed files with 2 additions and 2 deletions
2
dist/setup/index.js
generated
vendored
2
dist/setup/index.js
generated
vendored
|
@ -85420,7 +85420,7 @@ function downloadLatest(platform, arch, checkSum, githubToken) {
|
||||||
else {
|
else {
|
||||||
const extractedDir = yield tc.extractTar(downloadPath);
|
const extractedDir = yield tc.extractTar(downloadPath);
|
||||||
uvDir = path.join(extractedDir, artifact);
|
uvDir = path.join(extractedDir, artifact);
|
||||||
uvExecutablePath = path.join(extractedDir, 'uv');
|
uvExecutablePath = path.join(uvDir, 'uv');
|
||||||
}
|
}
|
||||||
const version = yield getVersion(uvExecutablePath);
|
const version = yield getVersion(uvExecutablePath);
|
||||||
yield (0, checksum_1.validateChecksum)(checkSum, downloadPath, arch, platform, version);
|
yield (0, checksum_1.validateChecksum)(checkSum, downloadPath, arch, platform, version);
|
||||||
|
|
|
@ -35,7 +35,7 @@ export async function downloadLatest(
|
||||||
} else {
|
} else {
|
||||||
const extractedDir = await tc.extractTar(downloadPath)
|
const extractedDir = await tc.extractTar(downloadPath)
|
||||||
uvDir = path.join(extractedDir, artifact)
|
uvDir = path.join(extractedDir, artifact)
|
||||||
uvExecutablePath = path.join(extractedDir, 'uv')
|
uvExecutablePath = path.join(uvDir, 'uv')
|
||||||
}
|
}
|
||||||
const version = await getVersion(uvExecutablePath)
|
const version = await getVersion(uvExecutablePath)
|
||||||
await validateChecksum(checkSum, downloadPath, arch, platform, version)
|
await validateChecksum(checkSum, downloadPath, arch, platform, version)
|
||||||
|
|
Loading…
Add table
Reference in a new issue