From 8dd68d157d2b5c4617736d71a3aeab222069955b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 17 Mar 2020 09:00:12 +0530 Subject: [PATCH] ANother rsync invocation that needed compression method fixed --- setup/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/upload.py b/setup/upload.py index 4ec3a21ab7..f7c6109716 100644 --- a/setup/upload.py +++ b/setup/upload.py @@ -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 )