We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82ab219 commit 525ee23Copy full SHA for 525ee23
src/main/kotlin/kscript/app/Script.kt
@@ -210,8 +210,8 @@ fun Script.collectRepos(): List<MavenRepo> {
210
}
211
MavenRepo(
212
namedArgs.getOrDefault("id", annotationParams[0]),
213
- namedArgs.getOrDefault("url", annotationParams[1]),
214
- namedArgs.getOrDefault("user", annotationParams.getOrNull(2) ?: ""),
+ decodeEnv(namedArgs.getOrDefault("url", annotationParams[1])),
+ decodeEnv(namedArgs.getOrDefault("user", annotationParams.getOrNull(2) ?: "")),
215
namedArgs.getOrDefault("password", annotationParams.getOrNull(3) ?: "")
216
)
217
0 commit comments