From bf003b8d1f281b2c2eb0a06f5fcba4403d132139 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 10 Mar 2014 15:09:30 +0530 Subject: [PATCH] Add getafix to push destinations --- setup/installer/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/installer/__init__.py b/setup/installer/__init__.py index 960422f750..3102a1ba80 100644 --- a/setup/installer/__init__.py +++ b/setup/installer/__init__.py @@ -14,7 +14,7 @@ from setup.build_environment import HOST, PROJECT BASE_RSYNC = ['rsync', '-avz', '--delete', '--force'] EXCLUDES = [] for x in [ - 'src/calibre/plugins', 'src/calibre/manual', 'src/calibre/trac', + 'src/calibre/plugins', 'manual', '.bzr', '.git', '.build', '.svn', 'build', 'dist', 'imgsrc', '*.pyc', '*.pyo', '*.swp', '*.swo', 'format_docs']: EXCLUDES.extend(['--exclude', x]) @@ -82,6 +82,7 @@ class Push(Command): r'kovid@win7:/cygdrive/c/Users/kovid/calibre':'Windows 7', 'kovid@win7-x64:calibre-src':'win7-x64', 'kovid@tiny:calibre':None, + 'kovid@getafix:calibre-src':None, }.iteritems(): threads[vmname or host] = thread = Thread(target=push, args=(host, vmname, available)) thread.start()