From 23fa68ce8a5b66577a2c4d3b0a47af1002657136 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Feb 2011 12:26:55 -0700 Subject: [PATCH] No longer upload source to my server as the bandwidth requirements are too high --- setup/publish.py | 2 +- setup/upload.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/publish.py b/setup/publish.py index 8d9fe34f5c..6aa2aa0e06 100644 --- a/setup/publish.py +++ b/setup/publish.py @@ -43,7 +43,7 @@ class Stage3(Command): description = 'Stage 3 of the publish process' sub_commands = ['upload_user_manual', 'upload_demo', 'sdist', - 'upload_to_google_code', 'upload_to_sourceforge', + 'upload_to_sourceforge', 'upload_to_google_code', 'tag_release', 'upload_to_server', 'upload_to_mobileread', ] diff --git a/setup/upload.py b/setup/upload.py index 54bc8e108c..1917e0ab1f 100644 --- a/setup/upload.py +++ b/setup/upload.py @@ -324,7 +324,7 @@ class UploadToServer(Command): def run(self, opts): check_call('ssh divok rm -f %s/calibre-\*.tar.gz'%DOWNLOADS, shell=True) - check_call('scp dist/calibre-*.tar.gz divok:%s/'%DOWNLOADS, shell=True) + #check_call('scp dist/calibre-*.tar.gz divok:%s/'%DOWNLOADS, shell=True) check_call('gpg --armor --detach-sign dist/calibre-*.tar.gz', shell=True) check_call('scp dist/calibre-*.tar.gz.asc divok:%s/signatures/'%DOWNLOADS,