diff options
author | Joey Hess <joey@kitenet.net> | 2011-02-09 00:12:45 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-02-09 00:12:45 -0400 |
commit | 7a0826293e0ac6c0000f49a1618c1c613b909aa1 (patch) | |
tree | 77d24395cab6321dff8014c76b6413284b7e03bc /test.hs | |
parent | de1e33010232a8abad59a54758ec00808caa8a5c (diff) |
test: Don't rely on chmod -R working.
Sometimes I wish I could give all my users a real OS.
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -20,6 +20,8 @@ import Control.Exception (throw) import Control.Monad.State (liftIO) import Maybe import qualified Data.Map as M +import System.Path (recurseDir) +import System.IO.HVFS (SystemFS(..)) import qualified Annex import qualified BackendList @@ -536,8 +538,12 @@ cleanup dir = do when e $ do -- git-annex prevents annexed file content from being -- removed via permissions bits; undo - _ <- Utility.boolSystem "chmod" ["+rw", "-R", dir] + recurseDir SystemFS dir >>= mapM_ fixmodes removeDirectoryRecursive dir + where + fixmodes f = do + s <- getSymbolicLinkStatus f + unless (isSymbolicLink s) $ Content.allowWrite f checklink :: FilePath -> Assertion checklink f = do |