summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2017-08-10 10:21:31 +0200
committerJürg Billeter <j@bitron.ch>2017-08-10 10:21:31 +0200
commit1c2a884125092ef0bf9c53fc662de75099f77ec3 (patch)
tree86c26afa7d6da4e831419466dd7de57b0d81953a
parent67af5967041242a0392192aad285fbad6d0b44bb (diff)
downloadbuildstream-1c2a884125092ef0bf9c53fc662de75099f77ec3.tar.gz
_pipeline.py: Fix --deps run
-rw-r--r--buildstream/_pipeline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_pipeline.py b/buildstream/_pipeline.py
index 3c65e0967..163d82c5e 100644
--- a/buildstream/_pipeline.py
+++ b/buildstream/_pipeline.py
@@ -784,7 +784,7 @@ class Pipeline():
elif mode == 'build':
scope = Scope.BUILD
elif mode == 'run':
- scope = scope.RUN
+ scope = Scope.RUN
elements = list(self.dependencies(scope))