osproc.execProcesses: enable poParentStreams for posix; should make travis green again

This commit is contained in:
Andreas Rumpf
2017-10-26 09:19:18 +02:00
parent b2a2522d2d
commit c4dcbb45f4

View File

@@ -280,7 +280,7 @@ proc execProcesses*(cmds: openArray[string],
## executes the commands `cmds` in parallel. Creates `n` processes
## that execute in parallel. The highest return value of all processes
## is returned. Runs `beforeRunEvent` before running each command.
when defined(posix):
when false:
# poParentStreams causes problems on Posix, so we simply disable it:
var options = options - {poParentStreams}