Start of Kotlin 1.1 and Kobalt 1.0.x migration.

This commit is contained in:
Erik C. Thauvin 2017-03-06 11:06:37 -08:00
parent fe121bb645
commit 47ad7ed59e
10 changed files with 483 additions and 24 deletions

View file

@ -51,7 +51,7 @@ val example2 = project {
exec {
commandLine(listOf("cmd", "/c", "echo", "Test Example 2"), os = setOf(Os.WINDOWS))
commandLine(listOf("echo", "Test example 2"), os = setOf(Os.LINUX))
commandLine(listOf("cmd", "/c", "tasklist | find \"cmd.exe\""), os = setOf(Os.WINDOWS), fail = setOf(Fail.NONE))
//commandLine(listOf("cmd", "/c", "tasklist | find \"cmd.exe\""), os = setOf(Os.WINDOWS), fail = setOf(Fail.NONE))
commandLine(listOf("/bin/sh", "-c", "ps aux | grep bash"), os = setOf(Os.LINUX))
}
}