Fixed gorge/staticExec to not strip newlines.

This commit is contained in:
Reimer Behrends
2014-06-22 02:05:17 +02:00
parent be534279da
commit 672e72487b

View File

@@ -15,6 +15,8 @@ proc readOutput(p: PProcess): string =
discard p.waitForExit
while not output.atEnd:
result.add(output.readLine)
result.add("\n")
result.setLen(result.len - "\n".len)
proc opGorge*(cmd, input: string): string =
var p = startCmd(cmd)