mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 00:43:37 +02:00
Also write calibre version to the main server
This commit is contained in:
parent
e58def1cd7
commit
af34535d4c
1 changed files with 3 additions and 1 deletions
|
|
@ -260,7 +260,9 @@ def run(self, opts):
|
|||
check_call(['scp', src_file + '.asc', 'code:/srv/code/signatures/'])
|
||||
check_call('ssh code /usr/local/bin/update-calibre-code.py'.split())
|
||||
check_call(('ssh code /apps/update-calibre-version.py ' + __version__).split())
|
||||
check_call('ssh main /usr/local/bin/update-calibre-code.py && /apps/static/generate.py'.split())
|
||||
check_call((
|
||||
'ssh main /usr/local/bin/update-calibre-version.py %s && /usr/local/bin/update-calibre-code.py && /apps/static/generate.py' % __version__
|
||||
).split())
|
||||
# }}}
|
||||
|
||||
# Testing {{{
|
||||
|
|
|
|||
Loading…
Reference in a new issue