diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-13 01:49:38 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-13 01:49:38 -0400 |
commit | 55de2b85f4e646e361d71e58f36d65b617c625e0 (patch) | |
tree | 1838bc5713db0951297d4bd76ef2d3fbdeb361a1 /Annex.hs | |
parent | 09edd77928dd55f36292c0e299e6ace70da84578 (diff) |
metacata command can now operate on many files at once
Diffstat (limited to 'Annex.hs')
-rw-r--r-- | Annex.hs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -58,6 +58,7 @@ import Types.UUID import Types.FileMatcher import Types.NumCopies import Types.LockPool +import Types.MetaData import qualified Utility.Matcher import qualified Data.Map as M import qualified Data.Set as S @@ -109,6 +110,7 @@ data AnnexState = AnnexState , lockpool :: LockPool , flags :: M.Map String Bool , fields :: M.Map String String + , modmeta :: [ModMeta] , cleanup :: M.Map String (Annex ()) , inodeschanged :: Maybe Bool , useragent :: Maybe String @@ -146,6 +148,7 @@ newState c r = AnnexState , lockpool = M.empty , flags = M.empty , fields = M.empty + , modmeta = [] , cleanup = M.empty , inodeschanged = Nothing , useragent = Nothing |