fix: use asset.name
This commit is contained in:
@@ -17,7 +17,7 @@ export default (assets: Asset[]) => {
|
||||
throw new Error(`Unsupported platform ${process.platform}.`);
|
||||
|
||||
return {
|
||||
name: `bun-${process.platform}-${arch}.zip`,
|
||||
name: `bun-${process.platform}-${arch}`,
|
||||
asset: assets.find(asset => asset.name === `bun-${process.platform}-${arch}.zip`),
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import { readdirSync } from 'fs';
|
||||
|
||||
export default async(release: Release) => {
|
||||
const asset = getAsset(release.assets);
|
||||
const path = join(getHomeDir(), '.bun', 'bin');
|
||||
const path = join(getHomeDir(), '.bun', 'bin', asset.name);
|
||||
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}`);
|
||||
if (cache) {
|
||||
info(`Using cached Bun installation from ${cache}.`);
|
||||
@@ -34,6 +34,6 @@ export default async(release: Release) => {
|
||||
info(`Cached Bun to ${newCache}.`);
|
||||
addPath(newCache);
|
||||
|
||||
const bunPath = join(getHomeDir(), '.bun', 'bin', asset.name.replace('.zip', ''));
|
||||
const bunPath = join(getHomeDir(), '.bun', 'bin', asset.name);
|
||||
addPath(bunPath);
|
||||
}
|
||||
Reference in New Issue
Block a user