summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/plugins/distbuild_plugin.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/morphlib/plugins/distbuild_plugin.py b/morphlib/plugins/distbuild_plugin.py
index 21c936c5..4ac80b17 100644
--- a/morphlib/plugins/distbuild_plugin.py
+++ b/morphlib/plugins/distbuild_plugin.py
@@ -100,16 +100,13 @@ class WorkerBuild(cliapp.Plugin):
bc = morphlib.buildcommand.BuildCommand(self.app)
- self.app.status(msg='Running a fake Morph build!')
-
- self.app.status(msg='Creating some files! %s' %
- artifact.source.files())
+ # Just show the chunk name.
+ self.app.status(msg='NAME: %s' % artifact.source.name)
for basename in artifact.source.files():
with bc.lac.put_file(basename) as f:
f.write('Nonsense data.\n')
- self.app.status(msg='Done!')
# Now, before we start the build, we garbage collect the caches
# to ensure we have room. First we remove all system artifacts
# since we never need to recover those from workers post-hoc