From 8251de54cefdfc2778d783c236a516c3c2d9b79d Mon Sep 17 00:00:00 2001 From: xHyroM Date: Tue, 12 Jul 2022 09:09:40 +0200 Subject: [PATCH] fix: add path --- src/utils/install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/install.ts b/src/utils/install.ts index fa96e45..84426c2 100644 --- a/src/utils/install.ts +++ b/src/utils/install.ts @@ -12,7 +12,7 @@ export default async(release: Release) => { const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}`); if (cache) { info(`Using cached Bun installation from ${cache}.`); - addPath(cache); + addPath(path); return; }