fix: add path

This commit is contained in:
xHyroM 2022-07-12 09:09:40 +02:00
parent 19350f2b4f
commit 8251de54ce

View File

@ -12,7 +12,7 @@ export default async(release: Release) => {
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}`); const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}`);
if (cache) { if (cache) {
info(`Using cached Bun installation from ${cache}.`); info(`Using cached Bun installation from ${cache}.`);
addPath(cache); addPath(path);
return; return;
} }