summaryrefslogtreecommitdiff
path: root/CmdLine
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-04-30 15:04:01 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-04-30 15:04:01 -0400
commit4cd5738bb29278498b06b4f4d3edd4962c7a0eea (patch)
treefba68b6e8f9c0ed1ae6575d015cd0d8e0014ec8e /CmdLine
parent4a21f17d082d11d0301d314d49f8ffa5607c4713 (diff)
refactor
Diffstat (limited to 'CmdLine')
-rw-r--r--CmdLine/Action.hs7
1 files changed, 1 insertions, 6 deletions
diff --git a/CmdLine/Action.hs b/CmdLine/Action.hs
index 57e1fa60b..a32abbbee 100644
--- a/CmdLine/Action.hs
+++ b/CmdLine/Action.hs
@@ -5,8 +5,6 @@
- Licensed under the GNU GPL version 3 or higher.
-}
-{-# LANGUAGE BangPatterns #-}
-
module CmdLine.Action where
import Common.Annex
@@ -49,10 +47,7 @@ commandAction a = account =<< tryIO go
showEndFail
incerr
incerr = do
- Annex.changeState $ \s ->
- let ! c = Annex.errcounter s + 1
- ! s' = s { Annex.errcounter = c }
- in s'
+ Annex.incError
return False
{- Runs a single command action through the start, perform and cleanup