summaryrefslogtreecommitdiff
path: root/buildstream/plugins/elements/junction.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/plugins/elements/junction.py')
-rw-r--r--buildstream/plugins/elements/junction.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/buildstream/plugins/elements/junction.py b/buildstream/plugins/elements/junction.py
index c0fd67d17..9a08edcc3 100644
--- a/buildstream/plugins/elements/junction.py
+++ b/buildstream/plugins/elements/junction.py
@@ -45,6 +45,9 @@ Overview
machine_arch: "%{machine_arch}"
debug: True
+ # Optionally look in a subpath of the source repository for the project
+ path: projects/hello
+
.. note::
Junction elements may not specify any dependencies as they are simply
@@ -115,6 +118,7 @@ from buildstream._pipeline import PipelineError
class JunctionElement(Element):
def configure(self, node):
+ self.path = self.node_get_member(node, str, 'path', default='')
self.options = self.node_get_member(node, Mapping, 'options', default={})
def preflight(self):