summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-07-10 12:40:31 -0600
committerGravatar Joey Hess <joey@kitenet.net>2012-07-10 12:40:31 -0600
commit81b20a581ae6f3ff4217a340b0c1576851938019 (patch)
tree92f8578d013628ec3f556f215d818d4cb588e880
parent391356b343aa0546673da57aacfaa9aa868c3000 (diff)
avoid --no-inplace
Not available on systems with shoddy getopts. Should not be necessary, as that's rsync's default.
-rw-r--r--Remote/Rsync.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Rsync.hs b/Remote/Rsync.hs
index 887c68339..29bceb2db 100644
--- a/Remote/Rsync.hs
+++ b/Remote/Rsync.hs
@@ -169,7 +169,7 @@ checkPresent r o k = do
- ensure that files are only moved into place once complete
-}
partialParams :: CommandParam
-partialParams = Params "--no-inplace --partial --partial-dir=.rsync-partial"
+partialParams = Params "--partial --partial-dir=.rsync-partial"
{- Runs an action in an empty scratch directory that can be used to build
- up trees for rsync. -}