diff options
author | Joey Hess <joey@kitenet.net> | 2013-02-24 17:21:04 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-02-24 17:21:04 -0400 |
commit | 11679ab89d2610693df6b4e48f28f54401539995 (patch) | |
tree | 2a28c19cbaecda0f807f973f52a05cf854b78ecd /Annex | |
parent | 11408c021e834e98e61a2259c26d2957ea144d65 (diff) |
hopefully fix a bug
Diffstat (limited to 'Annex')
-rw-r--r-- | Annex/Perms.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Perms.hs b/Annex/Perms.hs index b1bac5e23..b344de688 100644 --- a/Annex/Perms.hs +++ b/Annex/Perms.hs @@ -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 |