mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-22 02:42:58 +02:00
rsync on my dev machine no longer supports -z
This commit is contained in:
parent
3bee7cf527
commit
3f86a1d5be
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@
|
|||
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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue