summaryrefslogtreecommitdiff
path: root/Messages.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-09-09 13:21:38 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-09-09 13:21:38 -0400
commit7be4468ffa5127f539712c72e202d19a9990984b (patch)
tree6a6bac032c7385289bd9ec5cc7033bbb8997be00 /Messages.hs
parentcac7297784a4eb953f0d6108d7e67e97be9285ad (diff)
buffer json output until done when in concurrent mode
Diffstat (limited to 'Messages.hs')
-rw-r--r--Messages.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Messages.hs b/Messages.hs
index 61702530f..b8764be55 100644
--- a/Messages.hs
+++ b/Messages.hs
@@ -122,7 +122,7 @@ showEndFail :: Annex ()
showEndFail = showEndResult False
showEndResult :: Bool -> Annex ()
-showEndResult ok = outputMessage (JSON.end ok) $ endResult ok ++ "\n"
+showEndResult ok = outputMessageFinal (JSON.end ok) $ endResult ok ++ "\n"
endResult :: Bool -> String
endResult True = "ok"