www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 0564a32785bfdfe5d98979eaa29747681912c0e7
parent e2cc0101af3a45d3d1bfe71e3edb821be3868ac4
Author: zimbatm <zimbatm@zimbatm.com>
Date:   Tue, 28 Apr 2020 12:49:45 +0200

Test.hs: inherit stderr from the parent

This allows to show the progress while building the tests

Diffstat:
MTest.hs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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