Add getafix to push destinations

This commit is contained in:
Kovid Goyal 2014-03-10 15:09:30 +05:30
parent 0415fb19dd
commit bf003b8d1f

View File

@ -14,7 +14,7 @@ from setup.build_environment import HOST, PROJECT
BASE_RSYNC = ['rsync', '-avz', '--delete', '--force'] BASE_RSYNC = ['rsync', '-avz', '--delete', '--force']
EXCLUDES = [] EXCLUDES = []
for x in [ 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', '.bzr', '.git', '.build', '.svn', 'build', 'dist', 'imgsrc', '*.pyc', '*.pyo', '*.swp',
'*.swo', 'format_docs']: '*.swo', 'format_docs']:
EXCLUDES.extend(['--exclude', x]) EXCLUDES.extend(['--exclude', x])
@ -82,6 +82,7 @@ class Push(Command):
r'kovid@win7:/cygdrive/c/Users/kovid/calibre':'Windows 7', r'kovid@win7:/cygdrive/c/Users/kovid/calibre':'Windows 7',
'kovid@win7-x64:calibre-src':'win7-x64', 'kovid@win7-x64:calibre-src':'win7-x64',
'kovid@tiny:calibre':None, 'kovid@tiny:calibre':None,
'kovid@getafix:calibre-src':None,
}.iteritems(): }.iteritems():
threads[vmname or host] = thread = Thread(target=push, args=(host, vmname, available)) threads[vmname or host] = thread = Thread(target=push, args=(host, vmname, available))
thread.start() thread.start()