summaryrefslogtreecommitdiff
path: root/Command/Sync.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-03-13 14:51:22 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-03-13 14:51:22 -0400
commit21e628912726255a5fe23bd8ef59ef60fbcef002 (patch)
treea58b2d9264aa19d4473cbe7cf8dd6e04eeec3f48 /Command/Sync.hs
parent699b34e03f3fcdb90909b02aa4f71706b75e37b4 (diff)
copy --fast --to remote: Avoid printing anything for files that are already believed to be present on the remote.
Diffstat (limited to 'Command/Sync.hs')
-rw-r--r--Command/Sync.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Sync.hs b/Command/Sync.hs
index 07006ef28..a4004736a 100644
--- a/Command/Sync.hs
+++ b/Command/Sync.hs
@@ -376,5 +376,5 @@ syncFile rs f (k, _) = do
put dest = do
ok <- commandAction $ do
showStart "copy" f
- next $ Command.Move.toPerform dest False k (Just f)
+ Command.Move.toStart' dest False (Just f) k
return (ok, if ok then Just (Remote.uuid dest) else Nothing)