From 0564a32785bfdfe5d98979eaa29747681912c0e7 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 28 Apr 2020 12:49:45 +0200 Subject: [PATCH] Test.hs: inherit stderr from the parent This allows to show the progress while building the tests --- Test.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test.hs b/Test.hs index ad63341..7503916 100755 --- a/Test.hs +++ b/Test.hs @@ -17,7 +17,7 @@ import Data.List (find) currentChannel = "channel:nixos-19.09-small" -- | Utils function: run a command and returns its output. -processOutput p args = Text.strip . Text.pack <$> readCreateProcess ((proc (Text.unpack p) (Text.unpack <$> args)) { std_err = CreatePipe }) "" +processOutput p args = Text.strip . Text.pack <$> readCreateProcess ((proc (Text.unpack p) (Text.unpack <$> args)) { std_err = Inherit }) "" -- * OpenGL