summaryrefslogtreecommitdiff
path: root/morph
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-27 11:25:09 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-04-27 11:25:09 +0100
commit0fc4bfccd5deb6b9426b54e7000d5cd145a71e7b (patch)
treeee1e5a300cd39c80222f27d2ed93c1500b3fd61e /morph
parent820ff559cc518b625375bb1e5d6854723fd2a324 (diff)
downloadmorph-0fc4bfccd5deb6b9426b54e7000d5cd145a71e7b.tar.gz
Add a bit more cmd_build progress info
Diffstat (limited to 'morph')
-rwxr-xr-xmorph3
1 files changed, 3 insertions, 0 deletions
diff --git a/morph b/morph
index e3a13500..2a772ca0 100755
--- a/morph
+++ b/morph
@@ -175,6 +175,7 @@ class Morph(cliapp.Application):
'''
logging.debug('cmd_build starting')
+ self.msg('Build starts')
cachedir = self.settings['cachedir']
if not os.path.exists(cachedir):
@@ -191,7 +192,9 @@ class Morph(cliapp.Application):
for repo_name, ref, filename in self._itertriplets(args):
logging.debug('cmd_build: %s %s %s' % (repo_name, ref, filename))
+ self.msg('Building %s %s %s' % (repo_name, ref, filename))
+ self.msg('Figuring out the right build order')
logging.debug('cmd_build: creating source pool')
srcpool = self._create_source_pool(lrc, rrc, (repo_name, ref,
filename))