1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-25 16:07:12 -07:00

You don’t belong here.

This commit is contained in:
Cedric Beust 2017-03-24 15:16:50 -07:00
parent 335e99b167
commit e49fd94392

View file

@ -50,9 +50,8 @@ open class NewRunCommand(val info: RunCommandInfo) {
// val DEFAULT_SUCCESS_VERBOSE = { output: List<String> -> kobaltLog(2, "Success:\n " + output.joinToString // val DEFAULT_SUCCESS_VERBOSE = { output: List<String> -> kobaltLog(2, "Success:\n " + output.joinToString
// ("\n"))} // ("\n"))}
// val defaultSuccess = DEFAULT_SUCCESS // val defaultSuccess = DEFAULT_SUCCESS
val DEFAULT_ERROR = { val DEFAULT_ERROR = { output: List<String> ->
output: List<String> -> kobaltError(output.joinToString("\n "))
kotlin.error(output.joinToString("\n "))
} }
} }