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

toString() for TaskInfo.

This commit is contained in:
Cedric Beust 2016-07-01 03:24:20 -08:00
parent 9271aaf398
commit 7779c37a0b

View file

@ -58,6 +58,8 @@ class TaskManager @Inject constructor(val args: Args,
get() = if (id.contains(":")) id.split(":")[1] else id
fun matches(projectName: String) = project == null || project == projectName
override fun toString() = taskName
}
class RunTargetResult(val taskResult: TaskResult, val messages: List<String>)