summaryrefslogtreecommitdiff
path: root/Remote/Rsync.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-05-17 11:44:13 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-05-17 11:45:24 -0400
commit21d9c84e7292a8984ea5d46c0134ddc6ff19babc (patch)
tree4ad29fe99c515c5d8fd27233c88611a8f792ec2d /Remote/Rsync.hs
parentc91929f6934fc4e94603d0fa004e824d5e2cfb65 (diff)
more standard names for whenM and unlessM operators
These are defined in ifelse, but it's not currently available and I don't want to pull in a library for 6 lines of code anyhow. Also, ifelse sets the fixity to 1, which does not allow >>? error $ ...
Diffstat (limited to 'Remote/Rsync.hs')
-rw-r--r--Remote/Rsync.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Rsync.hs b/Remote/Rsync.hs
index 53418a9ef..9d32ad19b 100644
--- a/Remote/Rsync.hs
+++ b/Remote/Rsync.hs
@@ -169,7 +169,7 @@ withRsyncScratchDir a = do
return res
where
nuke d = liftIO $
- doesDirectoryExist d <&> removeDirectoryRecursive d
+ doesDirectoryExist d >>? removeDirectoryRecursive d
rsyncRemote :: RsyncOpts -> [CommandParam] -> Annex Bool
rsyncRemote o params = do