build: Simplify enabling local build cache

This commit is contained in:
oSumAtrIX
2023-12-10 21:57:12 +01:00
parent 2d17459fa3
commit fe563fff93

View File

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