Fix check for pre-existing Gradle User Home

This commit is contained in:
Daz DeBoer 2022-01-17 14:06:56 -07:00
parent 50ca2bca83
commit 7dee0f45c2
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
2 changed files with 13 additions and 4 deletions

View file

@ -100,9 +100,14 @@ export class GradleStateCache {
}
cacheOutputExists(): boolean {
// Need to check for 'caches' directory to avoid incorrect detection on MacOS agents
const paths = this.getCachePath()
return paths.some(x => fs.existsSync(x))
for (const p of paths) {
if (fs.existsSync(p)) {
cacheDebug(`Cache output exists at ${p}`)
return true
}
}
return false
}
/**