From 09d3724d34e09a9eb9f85b47d24f91a72b5ed4ca Mon Sep 17 00:00:00 2001 From: xHyroM Date: Tue, 12 Jul 2022 09:23:33 +0200 Subject: [PATCH] chore: build --- dist/utils/install.js | 6 ++++-- src/utils/install.ts | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/dist/utils/install.js b/dist/utils/install.js index 0bd7ba4..4692a42 100644 --- a/dist/utils/install.js +++ b/dist/utils/install.js @@ -8,7 +8,8 @@ import { readdirSync } from 'fs'; export default async (release) => { const asset = getAsset(release.assets); const path = join(getHomeDir(), '.bun', 'bin', asset.name); - const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}`); + console.log(path); + const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`); if (cache) { info(`Using cached Bun installation from ${cache}.`); console.log(path); @@ -20,7 +21,8 @@ export default async (release) => { 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.version); - await saveCache([extracted], `bun-${process.platform}-${asset.name}`); + console.log(extracted); + await saveCache([extracted], `bun-${process.platform}-${asset.name}-${release.version}`); info(`Cached Bun to ${newCache}.`); addPath(newCache); const bunPath = join(getHomeDir(), '.bun', 'bin', asset.name); diff --git a/src/utils/install.ts b/src/utils/install.ts index e683dbe..b38d722 100644 --- a/src/utils/install.ts +++ b/src/utils/install.ts @@ -10,7 +10,8 @@ import { readdirSync } from 'fs'; export default async(release: Release) => { const asset = getAsset(release.assets); const path = join(getHomeDir(), '.bun', 'bin', asset.name); - const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}`); + console.log(path); + const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`); if (cache) { info(`Using cached Bun installation from ${cache}.`); console.log(path); @@ -29,7 +30,8 @@ export default async(release: Release) => { 'bun', release.version ); - await saveCache([extracted], `bun-${process.platform}-${asset.name}`); + console.log(extracted); + await saveCache([extracted], `bun-${process.platform}-${asset.name}-${release.version}`); info(`Cached Bun to ${newCache}.`); addPath(newCache);