1
0
Fork 0
mirror of https://github.com/actions/setup-go synced 2024-12-22 22:32:42 +00:00
Signed-off-by: Anton Troshin <anton@diagrid.io>
This commit is contained in:
Anton Troshin 2024-11-18 19:26:53 -06:00
parent 0859a18f70
commit 97e00a50c1
No known key found for this signature in database
GPG key ID: 9F8A96ACA9EB6363

2
dist/setup/index.js vendored
View file

@ -88390,6 +88390,7 @@ function cacheWindowsDir(extPath, tool, version, arch) {
if (!cacheDirectoryPaths) {
throw new Error(`Could not get cache folder paths.`);
}
core.info(`Found Cache Directory Paths: ${cacheDirectoryPaths}`);
// replace cache directory path with actual cache directory path
const actualCacheDirectoryPaths = cacheDirectoryPaths.map(path => {
return {
@ -88400,6 +88401,7 @@ function cacheWindowsDir(extPath, tool, version, arch) {
// iterate through actual cache directory paths and make links
for (const cachePath of actualCacheDirectoryPaths) {
if (!fs_1.default.existsSync(cachePath.actualPath)) {
core.info(`Creating directory ${cachePath.actualPath}`);
fs_1.default.mkdirSync(path.dirname(cachePath.actualPath), { recursive: true });
}
fs_1.default.symlinkSync(cachePath.actualPath, cachePath.defaultPath, 'junction');