1
0
镜像自地址 https://github.com/tuna/tunasync.git 已同步 2025-12-08 15:36:47 +00:00

add --filter "risk .~tmp~/" to rsync options

This option is for delete `.~tmp~/` folder upon successful sync,
`--delete-excluded` will not be needed.
这个提交包含在:
Miao Wang
2020-09-15 19:50:00 +08:00
父节点 aa36b96828
当前提交 2f9e96a75a
共有 3 个文件被更改,包括 8 次插入8 次删除

查看文件

@@ -67,7 +67,7 @@ func newRsyncProvider(c rsyncConfig) (*rsyncProvider, error) {
options := []string{
"-aHvh", "--no-o", "--no-g", "--stats",
"--exclude", ".~tmp~/",
"--exclude", ".~tmp~/", "--filter" , "risk .~tmp~/",
"--delete", "--delete-after", "--delay-updates",
"--safe-links",
}