Fix double zip issue?
This commit is contained in:
parent
8c368db359
commit
a730821cf4
@ -39,7 +39,10 @@ export default async (options?: {
|
|||||||
if (!cacheHit) {
|
if (!cacheHit) {
|
||||||
action.info(`Downloading a new version of Bun: ${url}`);
|
action.info(`Downloading a new version of Bun: ${url}`);
|
||||||
const zipPath = await downloadTool(url);
|
const zipPath = await downloadTool(url);
|
||||||
const extractedPath = await extractZip(zipPath);
|
let extractedPath = await extractZip(zipPath);
|
||||||
|
if (extractedPath.endsWith(".zip")) {
|
||||||
|
extractedPath = await extractZip(extractedPath);
|
||||||
|
}
|
||||||
const exePath = await extractBun(extractedPath);
|
const exePath = await extractBun(extractedPath);
|
||||||
await mv(exePath, path);
|
await mv(exePath, path);
|
||||||
version = await verifyBun(path);
|
version = await verifyBun(path);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user