aboutsummaryrefslogtreecommitdiff
path: root/Annex.hs
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 /Annex.hs
parent4a21f17d082d11d0301d314d49f8ffa5607c4713 (diff)
refactor
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs9
1 files changed, 8 insertions, 1 deletions
diff --git a/Annex.hs b/Annex.hs
index 1c8618cc0..07da2a17b 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -5,7 +5,7 @@
- Licensed under the GNU GPL version 3 or higher.
-}
-{-# LANGUAGE CPP, GeneralizedNewtypeDeriving, PackageImports #-}
+{-# LANGUAGE CPP, GeneralizedNewtypeDeriving, PackageImports, BangPatterns #-}
module Annex (
Annex,
@@ -32,6 +32,7 @@ module Annex (
getRemoteGitConfig,
withCurrentState,
changeDirectory,
+ incError,
) where
import Common
@@ -309,3 +310,9 @@ changeDirectory d = do
liftIO $ setCurrentDirectory d
r' <- liftIO $ Git.relPath r
changeState $ \s -> s { repo = r' }
+
+incError :: Annex ()
+incError = changeState $ \s ->
+ let ! c = errcounter s + 1
+ ! s' = s { errcounter = c }
+ in s'