mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 21:43:33 +00:00
Merge pull request #1295 from rbehrends/fix-staticexec
Fixed gorge/staticExec to not strip newlines.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user