From 4d5fd7243b1c18cefb4dae51f1c5f9264dcfc8dc Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 29 Oct 2007 16:46:00 +0100 Subject: [PATCH] Remove activity uploading since it's not useful with the new build system. --- lib/sugar/activity/bundlebuilder.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/lib/sugar/activity/bundlebuilder.py b/lib/sugar/activity/bundlebuilder.py index c2e32780..927b6957 100644 --- a/lib/sugar/activity/bundlebuilder.py +++ b/lib/sugar/activity/bundlebuilder.py @@ -348,22 +348,6 @@ def cmd_release(bundle_name, manifest): print 'Creating the bundle...' cmd_dist(bundle_name, manifest) - if os.environ.has_key('ACTIVITIES_REPOSITORY'): - print 'Uploading to the activities repository...' - repo = os.environ['ACTIVITIES_REPOSITORY'] - - server, path = repo.split(':') - retcode = subprocess.call(['ssh', server, 'rm', - '%s/%s*' % (path, bundle_name)]) - if retcode: - print 'ERROR - cannot remove old bundles from the repository.' - - bundle_path = os.path.join(_get_source_path(), - _get_package_name(bundle_name)) - retcode = subprocess.call(['scp', bundle_path, repo]) - if retcode: - print 'ERROR - cannot upload the bundle to the repository.' - print 'Done.' def cmd_clean():