ANother rsync invocation that needed compression method fixed

This commit is contained in:
Kovid Goyal 2020-03-17 09:00:12 +05:30
parent ccd4840013
commit 8dd68d157d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -336,7 +336,7 @@ class UploadUserManual(Command): # {{{
srcdir = self.j(gettempdir(), 'user-manual-build', 'en', 'html') + '/'
check_call(
' '.join(
['rsync', '-zrl', '--info=progress2', srcdir, 'main:/srv/manual/']
['rsync', '-zz' '-rl', '--info=progress2', srcdir, 'main:/srv/manual/']
),
shell=True
)