summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Firth <dan.firth@codethink.co.uk>2013-10-07 15:20:47 +0100
committerDaniel Firth <dan.firth@codethink.co.uk>2013-10-07 15:20:47 +0100
commit26019a71a71ce1db84c945ade0252fd496b794fa (patch)
treee5b4f66b86ed3969727f06958fe9c93c30e28576
parentdf64e4300d7b39c29ce75273196a7894c86a98a9 (diff)
downloadmorph-26019a71a71ce1db84c945ade0252fd496b794fa.tar.gz
Changed 'figuring out the right build order' to 'Computing artifact graph'
-rw-r--r--morphlib/buildcommand.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/buildcommand.py b/morphlib/buildcommand.py
index e76b7a14..2dd821c7 100644
--- a/morphlib/buildcommand.py
+++ b/morphlib/buildcommand.py
@@ -47,7 +47,7 @@ class BuildCommand(object):
for repo_name, ref, filename in self.app.itertriplets(args):
self.app.status(msg='Building %(repo_name)s %(ref)s %(filename)s',
repo_name=repo_name, ref=ref, filename=filename)
- self.app.status(msg='Figuring out the right build order')
+ self.app.status(msg='Computing artifact graph')
srcpool = self.create_source_pool(repo_name, ref, filename)
root_artifact = self.resolve_artifacts(srcpool)
self.build_in_order(root_artifact)