From d058e7f881925858971c5a562c650fa7fdd3568d Mon Sep 17 00:00:00 2001 From: "G.A. vd. Hoorn" Date: Tue, 26 Apr 2022 09:27:57 +0200 Subject: [PATCH 1/2] Correct --from-path to --from-paths (rosdep install) --- _includes/first_application_common/build_system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/first_application_common/build_system.md b/_includes/first_application_common/build_system.md index 710f2d89..89317698 100644 --- a/_includes/first_application_common/build_system.md +++ b/_includes/first_application_common/build_system.md @@ -24,7 +24,7 @@ git clone -b $ROS_DISTRO https://github.com/micro-ROS/micro_ros_setup.git src/mi # Update dependencies using rosdep sudo apt update && rosdep update -rosdep install --from-path src --ignore-src -y +rosdep install --from-paths src --ignore-src -y # Install pip sudo apt-get install python3-pip From 5448362fb4578164bdcf5f062a53b259487e1cdc Mon Sep 17 00:00:00 2001 From: "G.A. vd. Hoorn" Date: Tue, 26 Apr 2022 09:30:20 +0200 Subject: [PATCH 2/2] '--from-paths' here as well --- _docs/tutorials/core/teensy_with_arduino/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs/tutorials/core/teensy_with_arduino/index.md b/_docs/tutorials/core/teensy_with_arduino/index.md index 51370186..8017e633 100644 --- a/_docs/tutorials/core/teensy_with_arduino/index.md +++ b/_docs/tutorials/core/teensy_with_arduino/index.md @@ -51,7 +51,7 @@ cd microros_ws git clone -b $ROS_DISTRO https://github.com/micro-ROS/micro_ros_setup.git src/micro_ros_setup # Update dependencies using rosdep sudo apt update && rosdep update -rosdep install --from-path src --ignore-src -y +rosdep install --from-paths src --ignore-src -y # Install pip sudo apt-get install python3-pip