Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tutorial] fix copy-n-paste error on enclave path #220

Merged
merged 1 commit into from
Jun 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion SROS2_Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ To do this, we will use the sample policy file provided in `examples/sample_poli
First, we will copy this sample policy file into our keystore:

```bash
sudo apt update && sudo apt install subversion
cd ~/sros2_demo
svn checkout https://github.com/ros2/sros2/trunk/sros2/test/policies
```
Expand Down Expand Up @@ -201,5 +202,5 @@ For example, the following attempt for the `listener` node to subscribe to a top

```bash
# This will fail because the node is not permitted to subscribe to topics other than chatter.
ros2 run demo_nodes_py listener --ros-args -r chatter:=not_chatter -e /talker_listener/talker
ros2 run demo_nodes_py listener --ros-args -r chatter:=not_chatter -e /talker_listener/listener
```
2 changes: 1 addition & 1 deletion SROS2_MacOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,5 @@ For example, the following attempt for the `listener` node to subscribe to a top

```bash
# This will fail because the node is not permitted to subscribe to topics other than chatter.
ros2 run demo_nodes_py listener --ros-args -r chatter:=not_chatter -e /talker_listener/talker
ros2 run demo_nodes_py listener --ros-args -r chatter:=not_chatter -e /talker_listener/listener
```
2 changes: 1 addition & 1 deletion SROS2_Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,5 +167,5 @@ For example, the following attempt for the `listener` node to subscribe to a top

```bat
REM This will fail because the node is not permitted to subscribe to topics other than chatter.
ros2 run demo_nodes_py listener --ros-args -r chatter:=not_chatter -e /talker_listener/talker
ros2 run demo_nodes_py listener --ros-args -r chatter:=not_chatter -e /talker_listener/listener
```