From c4dcbb45f4cbc6e962ea841d5656156aa55eff95 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Thu, 26 Oct 2017 09:19:18 +0200 Subject: [PATCH] osproc.execProcesses: enable poParentStreams for posix; should make travis green again --- lib/pure/osproc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 15ffbf5de7..71d3d9c727 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -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}