From b15fb7d098ae77f2daab60b9388d5129ad144c59 Mon Sep 17 00:00:00 2001 From: xHyroM Date: Tue, 12 Jul 2022 08:40:58 +0200 Subject: [PATCH] chore: build --- dist/index.js | 2 +- dist/utils/getAsset.js | 17 ++++------------- dist/utils/getGithubRelease.js | 5 ++++- dist/utils/install.js | 5 +++-- 4 files changed, 12 insertions(+), 17 deletions(-) diff --git a/dist/index.js b/dist/index.js index f55fd20..b386469 100644 --- a/dist/index.js +++ b/dist/index.js @@ -14,7 +14,7 @@ const main = async () => { const release = await getGithubRelease(version, token); if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found') return exit('Invalid bun version.'); - info(`Going to install release ${release.tag_name}`); + info(`Going to install release ${release.version}`); await install(release); setOutput('bun-version', release.tag_name); } diff --git a/dist/utils/getAsset.js b/dist/utils/getAsset.js index e96ac4e..b7fa538 100644 --- a/dist/utils/getAsset.js +++ b/dist/utils/getAsset.js @@ -10,19 +10,10 @@ export default (assets) => { default: throw new Error(`Unsupported architechture ${process.arch}.`); } - let platform; - switch (process.platform) { - case 'linux': - platform = 'linux'; - break; - case 'darwin': - platform = 'darwin'; - break; - default: - throw new Error(`Unsupported platform ${process.platform}.`); - } + if (!['linux', 'darwin'].some(platform => process.platform === platform)) + throw new Error(`Unsupported platform ${process.platform}.`); return { - name: `bun-${platform}-${arch}.zip`, - asset: assets.find(asset => asset.name === `bun-${platform}-${arch}.zip`), + name: `bun-${process.platform}-${arch}.zip`, + asset: assets.find(asset => asset.name === `bun-${process.platform}-${arch}.zip`), }; }; diff --git a/dist/utils/getGithubRelease.js b/dist/utils/getGithubRelease.js index 6739001..aaf99a5 100644 --- a/dist/utils/getGithubRelease.js +++ b/dist/utils/getGithubRelease.js @@ -12,5 +12,8 @@ export default async (version, token) => { 'Authorization': token } })).json(); - return release; + return { + ...release, + version: release.tag_name.replace('bun-v', '') + }; }; diff --git a/dist/utils/install.js b/dist/utils/install.js index 9dd34f3..f590a13 100644 --- a/dist/utils/install.js +++ b/dist/utils/install.js @@ -4,7 +4,8 @@ import getAsset from './getAsset.js'; import getHomeDir from './getHomeDir.js'; import { join } from 'path'; export default async (release) => { - const cache = find('bun', release.tag_name); + const cache = find('bun', release.version); + console.log(cache); if (cache) { info(`Using cached Bun installation from ${cache}.`); addPath(cache); @@ -14,7 +15,7 @@ export default async (release) => { info(`Downloading Bun from ${asset.asset.browser_download_url}.`); const zipPath = await downloadTool(asset.asset.browser_download_url); const extracted = await extractZip(zipPath, join(getHomeDir(), '.bun', 'bin')); - const newCache = await cacheDir(extracted, 'bun', release.tag_name); + const newCache = await cacheDir(extracted, 'bun', release.version); info(`Cached Bun to ${newCache}.`); addPath(newCache); const bunPath = join(getHomeDir(), '.bun', 'bin', asset.name.replace('.zip', ''));