diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-04-10 15:15:01 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-04-10 15:15:21 -0400 |
commit | 112ca28651e4e799ffe0d61933746f7f208dd140 (patch) | |
tree | 34e4696a4d773f536a1491761497f816aab367a1 /Messages.hs | |
parent | bc43b03e9d8b55c1edf2e89f072c53ebec06c1ca (diff) |
use built-in progress meters for git when in parallel mode
Diffstat (limited to 'Messages.hs')
-rw-r--r-- | Messages.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Messages.hs b/Messages.hs index 0e83a7243..d8be718cc 100644 --- a/Messages.hs +++ b/Messages.hs @@ -190,6 +190,6 @@ disableDebugOutput = updateGlobalLogger rootLoggerName $ setLevel NOTICE commandProgressDisabled :: Annex Bool commandProgressDisabled = withOutputType $ \t -> return $ case t of QuietOutput -> True - ProgressOutput -> True + ParallelOutput _ -> True JSONOutput -> True NormalOutput -> False |