Properly wait for spawned processes to end

This commit is contained in:
Chris Josten 2020-06-29 23:51:40 +02:00
parent 76b3ca0d33
commit 791a08363a
1 changed files with 7 additions and 2 deletions

View File

@ -111,15 +111,20 @@ class Page {
pandoc.stdin.writeln();
pandoc.stdin.flush();
pandoc.stdin.close();
pandoc.pid.wait();
string result;
string line;
while ((line = pandoc.stdout.readln()) !is null) {
result ~= line;
logf("Pandoc stdout: %s", line);
debug {
logf("Pandoc stdout: %s", line);
}
}
while ((line = pandoc.stderr.readln()) !is null) {
logf("Pandoc stderr: %s", line);
debug {
logf("Pandoc stderr: %s", line);
}
}
return result;