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 ca6563a commit 1f97c77Copy full SHA for 1f97c77
bin/test/TestScripts.scala
@@ -18,7 +18,9 @@ class TestScripts {
18
private def executeScript(script: String): (Int, String) = {
19
val sb = new StringBuilder
20
val ret = Process(script) ! ProcessLogger(sb append _)
21
- (ret, sb.toString)
+ val output = sb.toString
22
+ println(output) // For CI, otherwise "terminal inactive for 5m0s, build cancelled"
23
+ (ret, output)
24
}
25
26
private def delete(path: String) = {
0 commit comments