summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-11-25 16:13:06 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-11-25 16:13:06 -0400
commited3bcbb650a0b6c7f50d9ab81621aa085615380a (patch)
treebdf5d34330b2bb8cf118f1708e85892f74833683
parentd62ec016f583db5177208ea137b5bed1d2a3f64b (diff)
remove redundant showOutput calls.
The meter code does that too.
-rw-r--r--Remote/Glacier.hs2
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 ->