We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec1011a commit 4d18804Copy full SHA for 4d18804
bin/test/TestScripts.scala
@@ -17,7 +17,7 @@ class TestScripts {
17
18
private def executeScript(script: String): (Int, String) = {
19
val sb = new StringBuilder
20
- val ret = Process(script) ! ProcessLogger(sb append _)
+ val ret = Process(script) ! ProcessLogger { line => println(line); sb.append(line) }
21
val output = sb.toString
22
println(output) // For CI, otherwise "terminal inactive for 5m0s, build cancelled"
23
(ret, output)
0 commit comments