Skip to content
Snippets Groups Projects
Unverified Commit 13c878b9 authored by Ruffin's avatar Ruffin Committed by GitHub
Browse files

Include underlay source folder in rosdep path (#2025)

As OMPL isn't yet registering properly with the ament index for ros2
and searching all of << parameters.underlay >>/install will stall rosdep
when searching entire $ROS_WS/install folder
parent 8f971aac
No related branches found
No related tags found
No related merge requests found
......@@ -60,9 +60,22 @@ _commands:
sha256sum $PWD/checksum.txt >> checksum.txt
apt-get update
rosdep update
# workarround for OMPL and rosdep
# https://github.com/ompl/ompl/issues/753
# Prevent searching $ROS_WS/install given it's too big for rosdep
if [ "$ROS_WS" == "<< parameters.underlay >>" ]; then
underlay_ws=""
else
underlay_ws=<< parameters.underlay >>/src
fi
echo underlay_ws = $underlay_ws
dependencies=$(
rosdep install -q -y \
--from-paths src \
$underlay_ws \
--ignore-src \
--skip-keys " \
slam_toolbox \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment