summaryrefslogtreecommitdiff
path: root/morphlib/plugins/deploy_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/plugins/deploy_plugin.py')
-rw-r--r--morphlib/plugins/deploy_plugin.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/morphlib/plugins/deploy_plugin.py b/morphlib/plugins/deploy_plugin.py
index 3b2eb388..9950ce37 100644
--- a/morphlib/plugins/deploy_plugin.py
+++ b/morphlib/plugins/deploy_plugin.py
@@ -233,7 +233,9 @@ class DeployPlugin(cliapp.Plugin):
self.app.status(msg='Running extension %(name)s%(kind)s',
name=name, kind=kind)
self.app.runcmd(
- [ext_filename] + args, env=env, stdout=None, stderr=None)
+ [ext_filename] + args,
+ ['bash', '-c', 'while read l; do echo `date "+%F %T"` $l; done'],
+ env=env, stdout=None, stderr=None)
if delete_ext:
os.remove(ext_filename)