aboutsummaryrefslogtreecommitdiff
path: root/build-logic
diff options
context:
space:
mode:
Diffstat (limited to 'build-logic')
-rw-r--r--build-logic/settings.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-logic/settings.gradle.kts b/build-logic/settings.gradle.kts
index 84b36fa8..0c7a0f8c 100644
--- a/build-logic/settings.gradle.kts
+++ b/build-logic/settings.gradle.kts
@@ -53,7 +53,7 @@ dependencyResolutionManagement {
if (System.getenv("DEP_OVERRIDE") == "true") {
val overrides = System.getenv().filterKeys { it.startsWith("DEP_OVERRIDE_") }
for ((key, value) in overrides) {
- val catalogKey = key.removePrefix("DEP_OVERRIDE_").toLowerCase()
+ val catalogKey = key.removePrefix("DEP_OVERRIDE_").lowercase()
println("Overriding $catalogKey with $value")
version(catalogKey, value)
}