Handle case where requested distribution has already been installed

This commit is contained in:
Daz DeBoer 2021-07-05 18:08:14 -06:00
parent 241d9c1df0
commit 1a033e4220
No known key found for this signature in database
GPG key ID: 70F584A28F2230E8
2 changed files with 8 additions and 4 deletions

2
dist/main/index.js vendored

File diff suppressed because one or more lines are too long

View file

@ -89,11 +89,15 @@ async function findGradleVersionDeclaration(
async function provisionGradle(
versionInfo: GradleVersionInfo
): Promise<string> {
const downloadPath = await downloadAndCacheGradleDistribution(versionInfo)
const installsDir = path.join(os.homedir(), 'gradle-installations/installs')
await toolCache.extractZip(downloadPath, installsDir)
const installDir = path.join(installsDir, `gradle-${versionInfo.version}`)
if (fs.existsSync(installDir)) {
core.info(`Gradle installation already exists at ${installDir}`)
return executableFrom(installDir)
}
const downloadPath = await downloadAndCacheGradleDistribution(versionInfo)
await toolCache.extractZip(downloadPath, installsDir)
core.info(`Extracted Gradle ${versionInfo.version} to ${installDir}`)
const executable = executableFrom(installDir)