mirror of https://github.com/sbt/sbt.git
Flush output every time we write to it in StreamDumper
To try harder to get our errors displayed.
This commit is contained in:
parent
63d9b638c3
commit
a72448b793
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue