Flush output every time we write to it in StreamDumper

To try harder to get our errors displayed.
This commit is contained in:
Havoc Pennington 2014-06-05 11:09:59 -04:00
parent 63d9b638c3
commit a72448b793
1 changed files with 1 additions and 0 deletions

View File

@ -101,6 +101,7 @@ class StreamDumper(in: java.io.BufferedReader, out: java.io.PrintStream) extends
case null => ()
case line =>
out.println(line)
out.flush()
read()
}
read()