aaaaaaaaa

This commit is contained in:
xHyroM 2022-07-11 10:13:50 +02:00
parent 8c96e64ebf
commit 763bd6cb74
4 changed files with 14 additions and 8 deletions

View file

@ -21,5 +21,8 @@ export default (assets) => {
default:
throw new Error(`Unsupported platform ${process.platform}.`);
}
return assets.find(asset => asset.name === `bun-${platform}-${arch}.zip`);
return {
name: `bun-${platform}-${arch}.zip`,
asset: assets.find(asset => asset.name === `bun-${platform}-${arch}.zip`),
};
};