We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75055bf commit f8b3e78Copy full SHA for f8b3e78
1 file changed
build.gradle.kts
@@ -119,7 +119,7 @@ subprojects {
119
mavenLocal()
120
maven {
121
name = "repsy"
122
- url = uri(project.findProperty("repoUrl")?.toString() ?:"https://repo.repsy.io/")
+ url = uri(project.findProperty("repoUrl")?.toString()?.takeIf { !it.isEmpty() } ?: "https://repo.repsy.io/")
123
credentials {
124
username = System.getenv("REPO_USER").takeIf { !it.isNullOrBlank() }
125
?: project.findProperty("repoUser")?.toString()
0 commit comments