Skip to content

Commit 9c37b4c

Browse files
Correct 'rosdep install' cmd: --from-path -> --from-paths (#370)
* Correct --from-path to --from-paths (rosdep install) * '--from-paths' here as well
1 parent 24b3de4 commit 9c37b4c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

_docs/tutorials/core/teensy_with_arduino/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ cd microros_ws
5151
git clone -b $ROS_DISTRO https://github.com/micro-ROS/micro_ros_setup.git src/micro_ros_setup
5252
# Update dependencies using rosdep
5353
sudo apt update && rosdep update
54-
rosdep install --from-path src --ignore-src -y
54+
rosdep install --from-paths src --ignore-src -y
5555
# Install pip
5656
sudo apt-get install python3-pip
5757

_includes/first_application_common/build_system.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ git clone -b $ROS_DISTRO https://github.com/micro-ROS/micro_ros_setup.git src/mi
2424

2525
# Update dependencies using rosdep
2626
sudo apt update && rosdep update
27-
rosdep install --from-path src --ignore-src -y
27+
rosdep install --from-paths src --ignore-src -y
2828

2929
# Install pip
3030
sudo apt-get install python3-pip

0 commit comments

Comments
 (0)