build: Simplify enabling local build cache

This commit is contained in:
oSumAtrIX 2023-12-10 21:57:09 +01:00
parent fa5713b4a0
commit fb56e9a362
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,7 +2,7 @@ rootProject.name = "revanced-integrations"
buildCache {
local {
isEnabled = !System.getenv().containsKey("CI")
isEnabled = "CI" !in System.getenv()
}
}