diff options
author | Joey Hess <joey@kitenet.net> | 2013-02-24 17:40:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-02-24 17:40:14 -0400 |
commit | 1bc883efdcdbff0d8ba24fc3209d1cbe4759aedc (patch) | |
tree | 01888146791a525dbf89de3418c23380777666e0 | |
parent | 3086f24ab560b1072659870c53efb33532129526 (diff) |
fix
-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 b344de688..dc1cb2f8b 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 $ createDirectoryIfMissing p + liftIO $ createDirectoryIfMissing True p setAnnexPerm p {- Blocks writing to the directory an annexed file is in, to prevent the |