Skip to content

Commit

Permalink
Update README.md to remove '$ ' so that you can copy and run command (#…
Browse files Browse the repository at this point in the history
…294)

because of the extra '$ ' this happens:

```
(spot_mini_env) vscode@gdogv10:~/catkin_ws/src$ $ roslaunch --screen foxglove_bridge foxglove_bridge.launch port:=8765
bash: $: command not found
```

### Changelog
fixed typo in readme so you can paste commands to the terminal

### Description

I forget the command to start foxglove bridge, so I google 'foxglove
bridge github', end up at the README, copy and paste the command to my
terminal and then this happens:
```
(spot_mini_env) vscode@gdogv10:~/catkin_ws/src$ $ roslaunch --screen foxglove_bridge foxglove_bridge.launch port:=8765
bash: $: command not found
```

the extra '$ '  needs to be removed...
  • Loading branch information
Felipegalind0 authored May 3, 2024
1 parent ff30bdd commit fe5e93e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The `foxglove_bridge` uses the [Foxglove WebSocket protocol](https://github.com/
The `foxglove_bridge` package is available for ROS 1 Melodic and Noetic, and ROS 2 Humble and Rolling. Earlier releases of ROS will not be supported due to API design and/or performance limitations. The package can be installed with the following command:

```bash
$ sudo apt install ros-$ROS_DISTRO-foxglove-bridge
sudo apt install ros-$ROS_DISTRO-foxglove-bridge
```

## Running the bridge
Expand All @@ -32,7 +32,7 @@ To run the bridge node, it is recommended to use the provided launch file:
**ROS 1**

```bash
$ roslaunch --screen foxglove_bridge foxglove_bridge.launch port:=8765
roslaunch --screen foxglove_bridge foxglove_bridge.launch port:=8765
```

```xml
Expand All @@ -48,7 +48,7 @@ $ roslaunch --screen foxglove_bridge foxglove_bridge.launch port:=8765
**ROS 2**

```bash
$ ros2 launch foxglove_bridge foxglove_bridge_launch.xml port:=8765
ros2 launch foxglove_bridge foxglove_bridge_launch.xml port:=8765
```

```xml
Expand Down

0 comments on commit fe5e93e

Please sign in to comment.