clean filter should update location log when adding new content to annex
This commit is contained in:
parent
ad06f8ceed
commit
99b2a524a0
2 changed files with 16 additions and 6 deletions
|
@ -25,6 +25,7 @@ module Annex.Content (
|
|||
checkDiskSpace,
|
||||
moveAnnex,
|
||||
linkAnnex,
|
||||
LinkAnnexResult(..),
|
||||
sendAnnex,
|
||||
prepSendAnnex,
|
||||
removeAnnex,
|
||||
|
@ -479,15 +480,20 @@ moveAnnex key src = withObjectLoc key storeobject storedirect
|
|||
- prevent losing the content if the source file is deleted, but does not
|
||||
- guard against modifications.
|
||||
-}
|
||||
linkAnnex :: Key -> FilePath -> Annex Bool
|
||||
linkAnnex :: Key -> FilePath -> Annex LinkAnnexResult
|
||||
linkAnnex key src = do
|
||||
dest <- calcRepo (gitAnnexLocation key)
|
||||
ifM (liftIO $ doesFileExist dest)
|
||||
( return True
|
||||
( return LinkAnnexNoop
|
||||
, modifyContent dest $
|
||||
liftIO $ createLinkOrCopy src dest
|
||||
ifM (liftIO $ createLinkOrCopy src dest)
|
||||
( return LinkAnnexOk
|
||||
, return LinkAnnexFailed
|
||||
)
|
||||
)
|
||||
|
||||
data LinkAnnexResult = LinkAnnexOk | LinkAnnexFailed | LinkAnnexNoop
|
||||
|
||||
{- Runs an action to transfer an object's content.
|
||||
-
|
||||
- In direct mode, it's possible for the file to change as it's being sent.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue