diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-06-22 20:26:18 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-06-22 20:26:18 +0100 |
commit | 0449791185042ddb8ad2819d773b3aefbe4a91a6 (patch) | |
tree | 680bf8149f2a4965ec464fa9ca6de6965ec95748 | |
parent | 38cdd7595eeafe9906c42d258edeacaf50743bb1 (diff) | |
parent | 989bf5f796f1293c614b058ea1143d3579c51622 (diff) | |
download | Nim-0449791185042ddb8ad2819d773b3aefbe4a91a6.tar.gz |
Merge branch 'devel' of github.com:Araq/Nimrod into devel
-rw-r--r-- | compiler/vmdeps.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/vmdeps.nim b/compiler/vmdeps.nim index 0e01f5031..9a213d813 100644 --- a/compiler/vmdeps.nim +++ b/compiler/vmdeps.nim @@ -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) |