summaryrefslogtreecommitdiff
path: root/Annex/Direct.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Annex/Direct.hs')
-rw-r--r--Annex/Direct.hs8
1 files changed, 3 insertions, 5 deletions
diff --git a/Annex/Direct.hs b/Annex/Direct.hs
index 1bebb2cb7..a88a045e7 100644
--- a/Annex/Direct.hs
+++ b/Annex/Direct.hs
@@ -153,8 +153,7 @@ mergeDirectCleanup d oldsha newsha = do
- Symlinks are replaced with their content, if it's available. -}
movein k f = do
l <- calcGitLink f k
- replaceFile f $
- makeAnnexLink l
+ replaceFile f $ makeAnnexLink l
toDirect k f
{- Any new, modified, or renamed files were written to the temp
@@ -179,15 +178,14 @@ toDirectGen k f = do
{- Move content from annex to direct file. -}
updateInodeCache k loc
thawContent loc
- replaceFile f $
- liftIO . moveFile loc
+ replaceFile f $ liftIO . moveFile loc
, return Nothing
)
(loc':_) -> ifM (isNothing <$> getAnnexLinkTarget loc')
{- Another direct file has the content; copy it. -}
( return $ Just $
replaceFile f $
- void . liftIO . copyFileExternal loc'
+ liftIO . void . copyFileExternal loc'
, return Nothing
)