basic clean filter working

This commit is contained in:
Joey Hess 2015-12-04 13:39:14 -04:00
parent 20ca89dfa3
commit 2c6454a2e2
Failed to extract signature
2 changed files with 54 additions and 3 deletions

View file

@ -24,6 +24,7 @@ module Annex.Content (
withTmp,
checkDiskSpace,
moveAnnex,
linkAnnex,
sendAnnex,
prepSendAnnex,
removeAnnex,
@ -470,6 +471,23 @@ moveAnnex key src = withObjectLoc key storeobject storedirect
alreadyhave = liftIO $ removeFile src
{- Hard links a file into .git/annex/objects/, falling back to a copy
- if necessary.
-
- Does not lock down the hard linked object, so that the user can modify
- the source file. So, adding an object to the annex this way can
- prevent losing the content if the source file is deleted, but does not
- guard against modifications.
-}
linkAnnex :: Key -> FilePath -> Annex Bool
linkAnnex key src = do
dest <- calcRepo (gitAnnexLocation key)
ifM (liftIO $ doesFileExist dest)
( return True
, modifyContent dest $
liftIO $ createLinkOrCopy src dest
)
{- 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.