about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatt Hamrick <matthewjhamrick@gmail.com>2022-09-02 15:16:51 -0700
committerGitHub <noreply@github.com>2022-09-02 15:16:51 -0700
commitc528f70325260dff830fad52b2ecdd0b7af77d38 (patch)
treeaab9bdb3bacce80d3167617d0cbc3ffeb331f280
parent9ba169a73acfa9c9875b76eec09e9a91cc6246df (diff)
downloadrust-c528f70325260dff830fad52b2ecdd0b7af77d38.tar.gz
rust-c528f70325260dff830fad52b2ecdd0b7af77d38.zip
ffx component run should provide a collection
In the future,`ffx component run` will not default to the using the `/core/ffx-laboratory` collection. Updated the run commands to include this.
-rw-r--r--src/doc/rustc/src/platform-support/fuchsia.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/doc/rustc/src/platform-support/fuchsia.md b/src/doc/rustc/src/platform-support/fuchsia.md
index 53a510f080e..e256594b153 100644
--- a/src/doc/rustc/src/platform-support/fuchsia.md
+++ b/src/doc/rustc/src/platform-support/fuchsia.md
@@ -562,6 +562,7 @@ Finally, run the component:
 
 ```sh
 ${SDK_PATH}/tools/${ARCH}/ffx component run \
+    /core/ffx-laboratory:hello_fuchsia \
     fuchsia-pkg://hello-fuchsia/hello_fuchsia_manifest#meta/hello_fuchsia.cm
 ```
 
@@ -571,6 +572,7 @@ passed.
 ```sh
 ${SDK_PATH}/tools/${ARCH}/ffx component run \
     --recreate \
+    /core/ffx-laboratory:hello_fuchsia \
     fuchsia-pkg://hello-fuchsia/hello_fuchsia_manifest#meta/hello_fuchsia.cm
 ```