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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildstream/plugins/elements/junction.py b/buildstream/plugins/elements/junction.py
index 7f9817359..2550e1f79 100644
--- a/buildstream/plugins/elements/junction.py
+++ b/buildstream/plugins/elements/junction.py
@@ -79,7 +79,7 @@ depend on a junction element itself.
Therefore, if you require the most up-to-date version of a subproject,
you must explicitly track the junction element by invoking:
- `bst track JUNCTION_ELEMENT`.
+ `bst source track JUNCTION_ELEMENT`.
Furthermore, elements within the subproject are also not tracked by default.
For this, we must specify the `--track-cross-junctions` option. This option
@@ -93,7 +93,7 @@ cached yet. However, they can be fetched explicitly:
.. code::
- bst fetch junction.bst
+ bst source fetch junction.bst
Other commands such as ``bst build`` implicitly fetch junction sources.
@@ -146,7 +146,7 @@ class JunctionElement(Element):
def get_unique_key(self):
# Junctions do not produce artifacts. get_unique_key() implementation
- # is still required for `bst fetch`.
+ # is still required for `bst source fetch`.
return 1
def configure_sandbox(self, sandbox):