build: Simplify enabling local build cache

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

View File

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