aboutsummaryrefslogtreecommitdiff
path: root/Messages/Internal.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-04-10 15:15:01 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-04-10 15:15:21 -0400
commit112ca28651e4e799ffe0d61933746f7f208dd140 (patch)
tree34e4696a4d773f536a1491761497f816aab367a1 /Messages/Internal.hs
parentbc43b03e9d8b55c1edf2e89f072c53ebec06c1ca (diff)
use built-in progress meters for git when in parallel mode
Diffstat (limited to 'Messages/Internal.hs')
-rw-r--r--Messages/Internal.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Messages/Internal.hs b/Messages/Internal.hs
index 1dd856b5e..2495f4fd3 100644
--- a/Messages/Internal.hs
+++ b/Messages/Internal.hs
@@ -17,7 +17,7 @@ handleMessage json normal = withOutputType go
where
go NormalOutput = liftIO normal
go QuietOutput = q
- go ProgressOutput = q
+ go (ParallelOutput _) = q
go JSONOutput = liftIO $ flushed json
q :: Monad m => m ()