diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-22 13:35:50 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-22 13:35:50 -0400 |
commit | 8e609f7a026795a106a819916e7d6756544b528e (patch) | |
tree | 04f3de0c13ba86df8da47559369ff7565a210679 /Command | |
parent | 067aaa4b4ef6a56e67caad1933812083ac09ce16 (diff) |
factor out new module
Diffstat (limited to 'Command')
-rw-r--r-- | Command/PreCommit.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Command/PreCommit.hs b/Command/PreCommit.hs index 4b90b5c2e..07d958de1 100644 --- a/Command/PreCommit.hs +++ b/Command/PreCommit.hs @@ -14,6 +14,7 @@ import qualified Command.Add import qualified Command.Fix import Annex.Direct import Annex.View +import Annex.View.ViewedFile import Logs.View import Logs.MetaData import Types.View @@ -52,12 +53,12 @@ startIndirect f = next $ do startDirect :: [String] -> CommandStart startDirect _ = next $ next $ preCommitDirect -addViewMetaData :: View -> FileView -> Key -> CommandStart +addViewMetaData :: View -> ViewedFile -> Key -> CommandStart addViewMetaData v f k = do showStart "metadata" f next $ next $ changeMetaData k $ fromView v f -removeViewMetaData :: View -> FileView -> Key -> CommandStart +removeViewMetaData :: View -> ViewedFile -> Key -> CommandStart removeViewMetaData v f k = do showStart "metadata" f next $ next $ changeMetaData k $ unsetMetaData $ fromView v f |