First rough ProcessBuilder implementation.

This commit is contained in:
Erik C. Thauvin 2016-07-11 17:54:21 -07:00
parent f52556b893
commit b37882746c
5 changed files with 72 additions and 16 deletions

View file

@ -37,6 +37,7 @@ val p = project {
}
exec {
commandLine(args = arrayOf("ls"))
commandLine(args = arrayOf("ls", "-- a"), dir = "../libs", fail = arrayOf(Fail.EXIT))
commandLine(arrayOf("cmd", "/c", "echo", "Test"), os = arrayOf("Win"), fail = arrayOf(Fail.STDERR))
}
}
}

View file

@ -1 +1 @@
kobalt.version=0.843
kobalt.version=0.845