chore(build): fix deprecation warning
Now visible due to this change: https://docs.gradle.org/8.1-rc-1/release-notes.html#:~:text=Useful%20deprecation%20warnings%20and%20errors%20from%20Kotlin%20script%20compilation
This commit is contained in:
parent
a6a218e062
commit
66158adc13
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue