Fix double zip issue?

This commit is contained in:
Ashcon Partovi 2023-02-22 18:11:20 -08:00
parent 8c368db359
commit a730821cf4

View File

@ -39,7 +39,10 @@ export default async (options?: {
if (!cacheHit) {
action.info(`Downloading a new version of Bun: ${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);
await mv(exePath, path);
version = await verifyBun(path);