Skip to content

Commit 4e17589

Browse files
committed
chore
1 parent 68b7218 commit 4e17589

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

debug.gradle.kts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import java.io.ByteArrayOutputStream
22

33
evaluationDependsOn(":client")
44

5-
gradle.projectsEvaluated({
5+
gradle.projectsEvaluated {
66

77
tasks.register<JavaExec>("checkDockerClient") {
88
main = "de.gesellix.docker.client.LocalDocker"
@@ -24,11 +24,9 @@ gradle.projectsEvaluated({
2424
)
2525

2626
fun summary(): String {
27-
var result = listOf("\nenvironment:\n")
28-
result += environmentVariables.map {
27+
val result = listOf("\nenvironment:\n") + environmentVariables.map {
2928
"- $it: ${environment[it]}"
30-
}
31-
result += systemProperties.map {
29+
} + systemProperties.map {
3230
"- $it: ${System.getProperty(it)}"
3331
}
3432
return result.joinToString("\n")
@@ -52,4 +50,4 @@ gradle.projectsEvaluated({
5250
"\nIf possible, please also share the log output above!")
5351
}
5452
}
55-
})
53+
}

0 commit comments

Comments
 (0)