Fix build

Signed-off-by: Xuanwo <github@xuanwo.io>
This commit is contained in:
Xuanwo
2023-01-09 23:34:11 +08:00
parent 83838b1674
commit 18887b64db
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ async function setup() {
// Download and extract.
const sccachePackage = await downloadTool(downloadUrl);
const sccachePath = (await extractTar(sccachePackage)) + `/sccache`;
const sccachePath = await extractTar(sccachePackage);
// Cache sccache.
const sccacheHome = await cacheDir(sccachePath, 'sccache', version);