summaryrefslogtreecommitdiff
path: root/morphlib/plugins
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-05-07 16:45:56 +0000
committerBaserock Gerrit <gerrit@baserock.org>2015-05-07 17:10:26 +0000
commit4c0d2a9f9c3b71345d1a59a403c81d2795917a75 (patch)
tree82e762912579c9f1707f889a78a1ac4b701d65a0 /morphlib/plugins
parent0b2b24a53316bee939d8921d8eb11254be7ce8a2 (diff)
downloadmorph-4c0d2a9f9c3b71345d1a59a403c81d2795917a75.tar.gz
Fix distbuild-morphology
This fixes an error caused by not enough parameters being given to the InitiatorBuildCommand constructor in distbuild-morphology. Change-Id: I133bd2f267fd06cfe88a1cbf4711cc79ad00d209
Diffstat (limited to 'morphlib/plugins')
-rw-r--r--morphlib/plugins/build_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/plugins/build_plugin.py b/morphlib/plugins/build_plugin.py
index a7eed59a..8411dcb6 100644
--- a/morphlib/plugins/build_plugin.py
+++ b/morphlib/plugins/build_plugin.py
@@ -85,7 +85,7 @@ class BuildPlugin(cliapp.Plugin):
self.use_distbuild = True
build_command = morphlib.buildcommand.InitiatorBuildCommand(
- self.app, addr, port)
+ self.app, addr, port, self.allow_detach)
filename = morphlib.util.sanitise_morphology_path(filename)
component_names = [morphlib.util.sanitise_morphology_path(name)