From 3f86a1d5be48181ef2a4596d3d6acef891346b73 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 Jun 2014 09:21:54 +0530 Subject: [PATCH] rsync on my dev machine no longer supports -z --- setup/installer/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/installer/__init__.py b/setup/installer/__init__.py index aa0d3d56b8..1667fc8209 100644 --- a/setup/installer/__init__.py +++ b/setup/installer/__init__.py @@ -11,7 +11,7 @@ import subprocess, tempfile, os, time, socket from setup import Command, installer_name from setup.build_environment import HOST, PROJECT -BASE_RSYNC = ['rsync', '-avz', '--delete', '--force'] +BASE_RSYNC = ['rsync', '-av', '--delete', '--force'] EXCLUDES = [] for x in [ 'src/calibre/plugins', 'manual',