rsync on my dev machine no longer supports -z

This commit is contained in:
Kovid Goyal 2014-06-27 09:21:54 +05:30
parent 3bee7cf527
commit 3f86a1d5be

View File

@ -11,7 +11,7 @@ import subprocess, tempfile, os, time, socket
from setup import Command, installer_name from setup import Command, installer_name
from setup.build_environment import HOST, PROJECT from setup.build_environment import HOST, PROJECT
BASE_RSYNC = ['rsync', '-avz', '--delete', '--force'] BASE_RSYNC = ['rsync', '-av', '--delete', '--force']
EXCLUDES = [] EXCLUDES = []
for x in [ for x in [
'src/calibre/plugins', 'manual', 'src/calibre/plugins', 'manual',