mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-03 11:28:41 +02:00
Use -zz for rsync
This commit is contained in:
parent
5bf84f7688
commit
1809676dba
2 changed files with 2 additions and 2 deletions
|
|
@ -102,7 +102,7 @@ def __call__(self):
|
|||
for i in range(5):
|
||||
try:
|
||||
check_call([
|
||||
'rsync', '-h', '-z', '--progress', '-e', 'ssh -x', x,
|
||||
'rsync', '-h', '-zz', '--progress', '-e', 'ssh -x', x,
|
||||
'%s,%s@frs.sourceforge.net:%s' %
|
||||
(self.username, self.project, self.rdir + '/')
|
||||
])
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ def get_fosshub_data():
|
|||
|
||||
def send_data(loc):
|
||||
subprocess.check_call([
|
||||
'rsync', '--inplace', '--delete', '-r', '-z', '-h', '--progress', '-e',
|
||||
'rsync', '--inplace', '--delete', '-r', '-zz', '-h', '--progress', '-e',
|
||||
'ssh -x', loc + '/', '%s@%s:%s' % (STAGING_USER, STAGING_HOST, STAGING_DIR)
|
||||
])
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue