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, 2 insertions, 2 deletions
diff --git a/morphlib/plugins/deploy_plugin.py b/morphlib/plugins/deploy_plugin.py
index 1d5c1184..efe6735b 100644
--- a/morphlib/plugins/deploy_plugin.py
+++ b/morphlib/plugins/deploy_plugin.py
@@ -544,7 +544,7 @@ class DeployPlugin(cliapp.Plugin):
def checkout_stratum(self, path, artifact, lac, rac):
with open(lac.get(artifact), 'r') as stratum:
chunks = [ArtifactCacheReference(c) for c in json.load(stratum)]
- #morphlib.builder.download_depends(chunks, lac, rac)
+ morphlib.builder.download_depends(chunks, lac, rac)
for chunk in chunks:
self.app.status(msg='Checkout chunk %(name)s.',
name=chunk.basename(), chatty=True)
@@ -557,7 +557,7 @@ class DeployPlugin(cliapp.Plugin):
def checkout_strata(self, path, artifact, lac, rac):
deps = artifact.source.dependencies
- #morphlib.builder.download_depends(deps, lac, rac)
+ morphlib.builder.download_depends(deps, lac, rac)
for stratum in deps:
self.checkout_stratum(path, stratum, lac, rac)
morphlib.builder.ldconfig(self.app.runcmd, path)