diff options
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Rsync.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Rsync.hs b/Remote/Rsync.hs index 409b5b760..430554ab8 100644 --- a/Remote/Rsync.hs +++ b/Remote/Rsync.hs @@ -296,7 +296,7 @@ rsyncSend o callback k canrename src = withRsyncScratchDir $ \tmp -> do liftIO $ createDirectoryIfMissing True $ parentDir dest ok <- liftIO $ if canrename then do - renameFile src dest + rename src dest return True else createLinkOrCopy src dest ps <- sendParams |