Skip to content

Commit

Permalink
build: Simplify enabling local build cache
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Dec 10, 2023
1 parent 2d7fffd commit e7dacfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ rootProject.name = "revanced-patcher"

buildCache {
local {
isEnabled = !System.getenv().containsKey("CI")
isEnabled = "CI" !in System.getenv()
}
}

0 comments on commit e7dacfb

Please sign in to comment.