diff options
author | Joey Hess <joey@kitenet.net> | 2011-11-04 19:38:17 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-11-04 19:41:11 -0400 |
commit | 0bb798e3516d5b4e8cdcf059572c54641f7a643a (patch) | |
tree | 53ce7cb313172ea22829c5f680929093bfbae6e0 /Utility | |
parent | 502f86604fd90d6f52236b38612a39ec6e713be7 (diff) |
Pass -t to rsync to preserve timestamps.
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/RsyncFile.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Utility/RsyncFile.hs b/Utility/RsyncFile.hs index 056bd8d11..c5006a30f 100644 --- a/Utility/RsyncFile.hs +++ b/Utility/RsyncFile.hs @@ -35,6 +35,8 @@ rsyncServerParams = [ Param "--server" -- preserve permissions , Param "-p" + -- preserve timestamps + , Param "-t" -- allow resuming of transfers of big files , Param "--inplace" -- other options rsync normally uses in server mode |