summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-05-25 00:37:41 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-05-25 00:37:41 -0400
commitf5ccd0349ef558d222005aa05068d6a391293959 (patch)
tree0418de30ef46e5f363022a9ae1cb8deeb4d339c8 /Annex.hs
parentf36eb3efd41c1a35fcbba8fcee2707826c4716a8 (diff)
assistant: Work around git-cat-file's not reloading the index after files are staged.
Argh.
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Annex.hs b/Annex.hs
index 3771bf5ba..2f0f7f5dc 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -86,6 +86,7 @@ data AnnexState = AnnexState
, force :: Bool
, fast :: Bool
, auto :: Bool
+ , daemon :: Bool
, branchstate :: BranchState
, repoqueue :: Maybe Git.Queue.Queue
, catfilehandles :: M.Map FilePath CatFileHandle
@@ -116,6 +117,7 @@ newState gitrepo = AnnexState
, force = False
, fast = False
, auto = False
+ , daemon = False
, branchstate = startBranchState
, repoqueue = Nothing
, catfilehandles = M.empty