CORDA-742 Test capsule cache directory

This commit is contained in:
Mat Rizzo 2017-10-25 17:19:06 +01:00 committed by mat-rizzo-r3
parent e10ed1bdcf
commit 127c862982

View File

@ -176,7 +176,9 @@ open class Cordform : DefaultTask() {
}
private fun buildNodeProcess(node: Node, logDir: File): Process {
return ProcessBuilder("java", "-Dcapsule.log=verbose", "-Dcapsule.dir=./cache", "-jar", Node.nodeJarName, "--just-generate-node-info")
val command = listOf("java", "-Dcapsule.log=verbose", "-Dcapsule.dir=./cache", "-jar", Node.nodeJarName, "--just-generate-node-info")
println(command.joinToString(" "))
return ProcessBuilder(command)
.directory(fullNodePath(node).toFile())
.redirectErrorStream(true)
// InheritIO causes hangs on windows due the gradle buffer also not being flushed.