summaryrefslogtreecommitdiff
path: root/buildstream/_stream.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/_stream.py')
-rw-r--r--buildstream/_stream.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildstream/_stream.py b/buildstream/_stream.py
index 4b699c1f2..a29d8b63f 100644
--- a/buildstream/_stream.py
+++ b/buildstream/_stream.py
@@ -361,6 +361,7 @@ class Stream():
# their artifacts is acceptable
#
def checkout(self, target, *,
+ deps='run',
directory=None,
force=False,
integrate=True,
@@ -384,7 +385,7 @@ class Stream():
# Stage deps into a temporary sandbox first
try:
- with target._prepare_sandbox(Scope.RUN, None, integrate=integrate) as sandbox:
+ with target._prepare_sandbox(Scope.RUN, None, deps=deps, integrate=integrate) as sandbox:
# Copy or move the sandbox to the target directory
sandbox_root = sandbox.get_directory()