build: Simplify enabling local build cache

This commit is contained in:
oSumAtrIX 2023-12-10 21:57:10 +01:00
parent 2d7fffd4ec
commit e7dacfba8c
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ rootProject.name = "revanced-patcher"
buildCache {
local {
isEnabled = !System.getenv().containsKey("CI")
isEnabled = "CI" !in System.getenv()
}
}