From 7ef0e8750194df61127d365eefd3707f576e1bab Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Thu, 17 Jul 2014 10:35:30 +0000 Subject: Fix some silly mistakes --- scripts/release-build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/release-build b/scripts/release-build index b3ad3641..299ac3a4 100755 --- a/scripts/release-build +++ b/scripts/release-build @@ -142,16 +142,16 @@ class ReleaseApp(cliapp.Application): filename = '%s-%s' % (version_label, basename) if os.path.exists(filename): - status('Reusing existing deployment of %s', filename) + self.output.write('Reusing existing deployment of %s\n' % filename) else: - status('Creating %s from release.morph', filename) + self.output.write('Creating %s from release.morph\n' % filename) self.deploy_single_image(cluster_path, name, filename, version_label) def deploy_single_image(self, cluster_path, name, location, version_label): deploy_command = [ 'morph', 'deploy', cluster_path, name, '--trove-host=%s' % self.settings['trove-host'], - '%s.location=%s' % (name, filename), + '%s.location=%s' % (name, location), '%s.VERSION_LABEL=%s' % (name, version_label) ] -- cgit v1.2.1