Skip to content

Commit 4d18804

Browse files
println in executeScript, hoping to get around CI timeout
1 parent ec1011a commit 4d18804

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/test/TestScripts.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class TestScripts {
1717

1818
private def executeScript(script: String): (Int, String) = {
1919
val sb = new StringBuilder
20-
val ret = Process(script) ! ProcessLogger(sb append _)
20+
val ret = Process(script) ! ProcessLogger { line => println(line); sb.append(line) }
2121
val output = sb.toString
2222
println(output) // For CI, otherwise "terminal inactive for 5m0s, build cancelled"
2323
(ret, output)

0 commit comments

Comments
 (0)