Skip to content

Commit

Permalink
Detekt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krystian-panek-vmltech committed Jan 20, 2022
1 parent a7a4afc commit 686aa87
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ open class DockerRunSpec(docker: Docker) : DockerInvokeSpec(docker) {
})
operation.set(environment.obj.provider {
when {
command.orNull.isNullOrBlank() -> "Running image '${imageOrFail}'"
else -> "Running image '${imageOrFail}' with command '${command.get()}'"
command.orNull.isNullOrBlank() -> "Running image '$imageOrFail'"
else -> "Running image '$imageOrFail' with command '${command.get()}'"
}
})
}
Expand Down

0 comments on commit 686aa87

Please sign in to comment.