From 6e8296de1fe7dd23abc4491e25a0628b91cef175 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 3 Nov 2010 13:44:15 -0600 Subject: [PATCH] ... --- 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 b976c4d448..23c68b7b8c 100644 --- a/setup/installer/__init__.py +++ b/setup/installer/__init__.py @@ -11,7 +11,7 @@ import subprocess, tempfile, os, time from setup import Command, installer_name from setup.build_environment import HOST, PROJECT -BASE_RSYNC = 'rsync -avz --delete'.split() +BASE_RSYNC = ['rsync', '-e', 'ssh -x', '-avz', '--delete'] EXCLUDES = [] for x in [ 'src/calibre/plugins', 'src/calibre/manual', 'src/calibre/trac',