summaryrefslogtreecommitdiff
path: root/Utility/Metered.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/Metered.hs')
-rw-r--r--Utility/Metered.hs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Utility/Metered.hs b/Utility/Metered.hs
index 54f038f81..9a0b726a7 100644
--- a/Utility/Metered.hs
+++ b/Utility/Metered.hs
@@ -165,10 +165,10 @@ type ProgressParser = String -> (Maybe BytesProcessed, String)
-}
commandMeter :: ProgressParser -> OutputHandler -> MeterUpdate -> FilePath -> [CommandParam] -> IO Bool
commandMeter progressparser oh meterupdate cmd params = catchBoolIO $
- withOEHandles createProcessSuccess p $ \(outh, errh) -> do
- ep <- async $ handlestderr errh
+ withHandle StdoutHandle createProcessSuccess p $ \outh -> do
+ -- ep <- async $ handlestderr errh
op <- async $ feedprogress zeroBytesProcessed [] outh
- wait ep
+ -- wait ep
wait op
where
p = proc cmd (toCommand params)
@@ -204,12 +204,12 @@ demeterCommand oh cmd params = demeterCommandEnv oh cmd params Nothing
demeterCommandEnv :: OutputHandler -> FilePath -> [CommandParam] -> Maybe [(String, String)] -> IO Bool
demeterCommandEnv oh cmd params environ = catchBoolIO $
- withOEHandles createProcessSuccess p $ \(outh, errh) -> do
- ep <- async $ avoidProgress True errh $ stderrHandler oh
+ withHandle StdoutHandle createProcessSuccess p $ \outh -> do
+ -- ep <- async $ avoidProgress True errh $ stderrHandler oh
op <- async $ avoidProgress True outh $ \l ->
unless (quietMode oh) $
putStrLn l
- wait ep
+ -- wait ep
wait op
return True
where