mirror of
https://github.com/actions/setup-go.git
synced 2025-06-28 07:53:43 +00:00
fix cache dir issue
This commit is contained in:
parent
2096a2c66a
commit
655555d319
3 changed files with 8 additions and 3 deletions
|
@ -33,7 +33,7 @@ export async function downloadGo(
|
|||
|
||||
// extracts with a root folder that matches the fileName downloaded
|
||||
const toolRoot = path.join(extPath, 'go');
|
||||
toolPath = await tc.cacheDir(toolRoot, 'go', versionSpec);
|
||||
toolPath = await tc.cacheDir(toolRoot, 'go', match.version);
|
||||
}
|
||||
} catch (error) {
|
||||
throw new Error(`Failed to download version ${versionSpec}: ${error}`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue