Allow cache to overwrite existing Gradle User Home

Fixes #480
This commit is contained in:
daz 2023-08-19 13:01:29 -06:00
parent 68e1dcdea4
commit 3d49588efc
No known key found for this signature in database
5 changed files with 66 additions and 7 deletions

View file

@ -37,6 +37,10 @@ export function isCacheWriteOnly(): boolean {
return params.isCacheWriteOnly()
}
export function isCacheOverwriteExisting(): boolean {
return params.isCacheOverwriteExisting()
}
export function isCacheDebuggingEnabled(): boolean {
return params.isCacheDebuggingEnabled()
}