diff options
author | Joey Hess <joey@kitenet.net> | 2012-11-25 16:13:06 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-11-25 16:13:06 -0400 |
commit | ed3bcbb650a0b6c7f50d9ab81621aa085615380a (patch) | |
tree | bdf5d34330b2bb8cf118f1708e85892f74833683 /Remote | |
parent | d62ec016f583db5177208ea137b5bed1d2a3f64b (diff) |
remove redundant showOutput calls.
The meter code does that too.
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Glacier.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Remote/Glacier.hs b/Remote/Glacier.hs index 2a88b925e..f960c517f 100644 --- a/Remote/Glacier.hs +++ b/Remote/Glacier.hs @@ -126,7 +126,6 @@ storeHelper r k feeder = go =<< glacierEnv c u ] go Nothing = return False go (Just e) = do - showOutput let p = (proc "glacier" (toCommand params)) { env = Just e } liftIO $ catchBoolIO $ withHandle StdinHandle createProcessSuccess p $ \h -> do @@ -147,7 +146,6 @@ retrieveHelper r k reader = go =<< glacierEnv c u ] go Nothing = return False go (Just e) = do - showOutput let p = (proc "glacier" (toCommand params)) { env = Just e } ok <- liftIO $ catchBoolIO $ withHandle StdoutHandle createProcessSuccess p $ \h -> |