mirror of https://github.com/actions/setup-go.git
				
				
				
			lint and build
Signed-off-by: Anton Troshin <anton@diagrid.io>
This commit is contained in:
		
							parent
							
								
									0dc6404f6a
								
							
						
					
					
						commit
						6cd0eaadd6
					
				|  | @ -88395,17 +88395,27 @@ function cacheWindowsDir(extPath, tool, version, arch) { | ||||||
|         const actualCacheDirectoryPaths = cacheDirectoryPaths.map(path => { |         const actualCacheDirectoryPaths = cacheDirectoryPaths.map(path => { | ||||||
|             return { |             return { | ||||||
|                 defaultPath: path, |                 defaultPath: path, | ||||||
|                 actualPath: path.replace('D:', 'C:').replace('d:', 'c:') |                 actualPath: path.replace('C:', 'D:').replace('c:', 'd:') | ||||||
|             }; |             }; | ||||||
|         }); |         }); | ||||||
|         // iterate through actual cache directory paths and make links
 |         // iterate through actual cache directory paths and make links if necessary
 | ||||||
|         for (const cachePath of actualCacheDirectoryPaths) { |         for (const cachePath of actualCacheDirectoryPaths) { | ||||||
|             if (!fs_1.default.existsSync(cachePath.actualPath)) { |             if (!fs_1.default.existsSync(cachePath.actualPath)) { | ||||||
|                 core.info(`Creating directory ${cachePath.actualPath}`); |                 core.info(`Creating directory ${cachePath.actualPath}`); | ||||||
|                 fs_1.default.mkdirSync(path.dirname(cachePath.actualPath), { recursive: true }); |                 fs_1.default.mkdirSync(path.dirname(cachePath.actualPath), { recursive: true }); | ||||||
|             } |             } | ||||||
|             fs_1.default.symlinkSync(cachePath.actualPath, cachePath.defaultPath, 'junction'); |             else { | ||||||
|             core.info(`Created link ${cachePath.defaultPath} => ${cachePath.actualPath}`); |                 core.info(`Directory ${cachePath.actualPath} already exists`); | ||||||
|  |                 // make sure the link is pointing to the actual cache directory
 | ||||||
|  |                 const symlinkTarget = fs_1.default.readlinkSync(cachePath.defaultPath); | ||||||
|  |                 if (symlinkTarget !== "") { | ||||||
|  |                     core.info(`Found link ${cachePath.defaultPath} => ${symlinkTarget}`); | ||||||
|  |                 } | ||||||
|  |                 else { | ||||||
|  |                     fs_1.default.symlinkSync(cachePath.actualPath, cachePath.defaultPath, 'junction'); | ||||||
|  |                     core.info(`Created link ${cachePath.defaultPath} => ${cachePath.actualPath}`); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|         } |         } | ||||||
|         // make outer code to continue using toolcache as if it were installed on c:
 |         // make outer code to continue using toolcache as if it were installed on c:
 | ||||||
|         // restore toolcache root to default drive c:
 |         // restore toolcache root to default drive c:
 | ||||||
|  |  | ||||||
|  | @ -240,7 +240,7 @@ async function cacheWindowsDir( | ||||||
|     } else { |     } else { | ||||||
|       core.info(`Directory ${cachePath.actualPath} already exists`); |       core.info(`Directory ${cachePath.actualPath} already exists`); | ||||||
|       // make sure the link is pointing to the actual cache directory
 |       // make sure the link is pointing to the actual cache directory
 | ||||||
|       let symlinkTarget = fs.readlinkSync(cachePath.defaultPath); |       const symlinkTarget = fs.readlinkSync(cachePath.defaultPath); | ||||||
|       if (symlinkTarget !== "") { |       if (symlinkTarget !== "") { | ||||||
|         core.info(`Found link ${cachePath.defaultPath} => ${symlinkTarget}`); |         core.info(`Found link ${cachePath.defaultPath} => ${symlinkTarget}`); | ||||||
|       } else { |       } else { | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 Anton Troshin
						Anton Troshin