hopefully fix a bug

This commit is contained in:
Joey Hess 2013-02-24 17:21:04 -04:00
parent 5ed3802661
commit 6ff1ce76b7
2 changed files with 3 additions and 2 deletions

View file

@ -70,7 +70,7 @@ createAnnexDirectory dir = traverse dir [] =<< top
)
where
done = forM_ below $ \p -> do
liftIO $ createDirectory p
liftIO $ createDirectoryIfMissing p
setAnnexPerm p
{- Blocks writing to the directory an annexed file is in, to prevent the

View file

@ -28,4 +28,5 @@ Please provide any additional information below.
The problem is that git annex already created a /media/LACIE/travail/.git/annex/objects/K1 file (same name in uppercase) and FAT isn't realy case sensitive.
> I *think* I've found the place that used createDirectory
> rather than createDirectoryIfMissing and fixed it. [[done]] --[[Joey]]