From de07ee1191c19f6c2064b533167463534c650745 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sat, 4 May 2024 11:52:26 +0900 Subject: [PATCH] fix: use cached dir on linux --- src/channel_linux.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channel_linux.ts b/src/channel_linux.ts index 31f76a9..05f98a3 100644 --- a/src/channel_linux.ts +++ b/src/channel_linux.ts @@ -72,6 +72,6 @@ export class LinuxChannelInstaller implements Installer { const root = await cache.cacheDir(extdir, "chromium", version); core.info(`Successfully Installed chromium to ${root}`); - return { root: extdir, bin: "chrome" }; + return { root, bin: "chrome" }; } }