Delete excluded paths on restore Gradle Home

Fixes #296
This commit is contained in:
daz 2024-07-19 08:48:44 -06:00 committed by Daz DeBoer
parent f8f7d3e704
commit e7f9f25d86

View file

@ -86,6 +86,7 @@ export class GradleUserHomeCache {
await this.debugReportGradleUserHomeSize('as restored from cache')
await new GradleHomeEntryExtractor(this.gradleUserHome, this.cacheConfig).restore(listener)
await new ConfigurationCacheEntryExtractor(this.gradleUserHome, this.cacheConfig).restore(listener)
await this.deleteExcludedPaths()
await this.debugReportGradleUserHomeSize('after restoring common artifacts')
}