From 1c08bb700083d67ce5fbf5c955963bfed8150e3a Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Wed, 19 Jan 2022 13:48:47 -0500 Subject: Convince GHC that a certain pattern match is exhaustive --- COPYRIGHT | 4 ++-- Utility/Process.hs | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/COPYRIGHT b/COPYRIGHT index 1c9f7ebce..18b19b52f 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -11,8 +11,8 @@ Copyright: © 2011 Joey Hess © 2014 Robie Basak License: GPL-3+ -Files: Utility/HumanTime.hs -Copyright: 2012-2013 Joey Hess +Files: Utility/HumanTime.hs Utility/Process.hs +Copyright: 2012-2015 Joey Hess 2022 Benjamin Barenblat License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use diff --git a/Utility/Process.hs b/Utility/Process.hs index 1807a1335..90ddce81b 100644 --- a/Utility/Process.hs +++ b/Utility/Process.hs @@ -2,8 +2,9 @@ - processes, and logging. - - Copyright 2012-2015 Joey Hess + - Copyright 2022 Benjamin Barenblat - - - License: BSD-2-clause + - License: Apache-2.0 -} {-# LANGUAGE CPP, Rank2Types #-} @@ -178,12 +179,12 @@ withHandle h creator p a = creator p' $ a . select , std_out = Inherit , std_err = Inherit } - (select, p') - | h == StdinHandle = + (select, p') = case h of + StdinHandle -> (stdinHandle, base { std_in = CreatePipe }) - | h == StdoutHandle = + StdoutHandle -> (stdoutHandle, base { std_out = CreatePipe }) - | h == StderrHandle = + StderrHandle -> (stderrHandle, base { std_err = CreatePipe }) -- | Like withHandle, but passes (stdin, stdout) handles to the action. -- cgit v1.2.3