summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Command')
-rw-r--r--Command/Sync.hs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Command/Sync.hs b/Command/Sync.hs
index 33b30df13..22a6b6f4d 100644
--- a/Command/Sync.hs
+++ b/Command/Sync.hs
@@ -434,13 +434,14 @@ resolveMerge' u
d <- fromRepo gitAnnexMergeDir
l <- liftIO $ dirContentsRecursive (d </> item)
if null l
- then go (d </> item)
- else mapM_ go l
+ then go d (d </> item)
+ else mapM_ (go d) l
where
- go f = do
+ go d f = do
v <- getAnnexLinkTarget f
+ let worktreef = makeRelative d f
case v of
- Just target -> stageSymlink f
+ Just target -> stageSymlink worktreef
=<< hashSymlink target
Nothing -> noop