Exclude cc-keystore from Gradle User Home

This commit is contained in:
daz
2023-12-20 10:07:03 -07:00
parent 9d6738618d
commit 009bd36b91
2 changed files with 2 additions and 2 deletions

View File

@@ -144,7 +144,7 @@ export class GradleStateCache {
*/
private async deleteExcludedPaths(): Promise<void> {
const rawPaths: string[] = params.getCacheExcludes()
// rawPaths.push('caches/*/cc-keystore')
rawPaths.push('caches/*/cc-keystore')
const resolvedPaths = rawPaths.map(x => path.resolve(this.gradleUserHome, x))
for (const p of resolvedPaths) {