Closed fortystory closed 1 year ago
[rsync-cmd] command=rsync -zva /source/path/ user@host:/target/path --exclude={'.idea/','.git/','cache/'}
这类带有{}的配置不生效
{}
[rsync-cmd] command=rsync -zva /source/path/ user@host:/target/path --exclude=.idea/ --exclude=.git/ --exclude=cache
拆开才能生效
这个命令太复杂了,写成个 shell script 用 asynctasks 调用吧。 或者改成这样试试:
command=rsync -zva /source/path/ user@host:/target/path '--exclude={".idea/",".git/","cache/"}'
这类带有
{}
的配置不生效拆开才能生效