chore: build

This commit is contained in:
xHyroM 2022-07-12 09:23:33 +02:00
parent c35af372da
commit 09d3724d34
2 changed files with 8 additions and 4 deletions

View File

@ -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);

View File

@ -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);