Skip to content

Commit 4e11c0b

Browse files
authored
fix: use cached dir on linux (#540)
The setup-chrome had returned the temporary directory instead of tool-cache. This Pull Request fix as returning installed tool-cache directory.
1 parent 8c84ae6 commit 4e11c0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/channel_linux.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ export class LinuxChannelInstaller implements Installer {
7272
const root = await cache.cacheDir(extdir, "chromium", version);
7373
core.info(`Successfully Installed chromium to ${root}`);
7474

75-
return { root: extdir, bin: "chrome" };
75+
return { root, bin: "chrome" };
7676
}
7777
}

0 commit comments

Comments
 (0)