Minor WindowsScheduler updates
This commit is contained in:
parent
7e2d4ca1a4
commit
998357385e
@ -426,6 +426,7 @@ public class WindowsScheduler {
|
||||
|
||||
/**
|
||||
* @return (stdout contents, stderr contents)
|
||||
* TODO: don't assume that process has exited yet. If it does we don't want to hang.
|
||||
*/
|
||||
public static Pair<String, String> captureProcessOutput(Process process) throws IOException {
|
||||
StringBuilder output = new StringBuilder();
|
||||
@ -435,10 +436,10 @@ public class WindowsScheduler {
|
||||
BufferedReader errorReader = new BufferedReader(new InputStreamReader(process.getErrorStream()))) {
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
output.append(line);
|
||||
output.append(line + "\n");
|
||||
}
|
||||
while ((line = errorReader.readLine()) != null) {
|
||||
error.append(line);
|
||||
error.append(line + "\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user