-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
readme: Fix bash commands on build instructions step
- Loading branch information
1 parent
7bfd472
commit f6d44fb
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,9 +139,9 @@ gstreamer-launch-1.0 udpsrc port=$PORT \ | |
1. Install the development dependencies: | ||
|
||
```Bash | ||
sudo apt update -y \ | ||
sudo apt install -y libunwind-dev | ||
sudo apt update -y &&\ | ||
sudo apt install -y --no-install-recommends \ | ||
libunwind-dev \ | ||
libclang-dev \ | ||
libssl-dev \ | ||
pkg-config \ | ||
|
@@ -178,7 +178,7 @@ sudo apt-get update -y &&\ | |
4. Clone this repository and enter it | ||
|
||
```Bash | ||
git clone [email protected]:mavlink/mavlink-camera-manager.git | ||
git clone [email protected]:mavlink/mavlink-camera-manager.git &&\ | ||
cd mavlink-camera-manager | ||
``` | ||
|
||
|