Skip to content
Snippets Groups Projects
Commit 79442e0a authored by Jürg Billeter's avatar Jürg Billeter
Browse files

compose.py: Support batching for integration commands

parent 73dec86e
No related branches found
No related tags found
1 merge request!915Command batching
......@@ -122,8 +122,9 @@ class ComposeElement(Element):
snapshot = set(vbasedir.list_relative_paths())
vbasedir.mark_unmodified()
for dep in self.dependencies(Scope.BUILD):
dep.integrate(sandbox)
with sandbox.batch(0):
for dep in self.dependencies(Scope.BUILD):
dep.integrate(sandbox)
if require_split:
# Calculate added, modified and removed files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment