After updating to the DP 3 Release, our current CONFIG_DOCKER_SEARCH_DIRS config isn't handled the same anymore.
It seems that build_base_image.sh now always prepends the path to the isaac_ros_common/scripts/ folder to each listed element, even when using absolute paths.
Im guessing this is a bug in this line:
|
if [[ "${CONFIG_DOCKER_SEARCH_DIRS[i]}" != '/*'* ]]; then |
Changing the comparison to != '/'* change fixed it for me, but im not a bash expert so this might not be the proper solution.
After updating to the DP 3 Release, our current
CONFIG_DOCKER_SEARCH_DIRSconfig isn't handled the same anymore.It seems that
build_base_image.shnow always prepends the path to theisaac_ros_common/scripts/folder to each listed element, even when using absolute paths.Im guessing this is a bug in this line:
isaac_ros_common/scripts/build_base_image.sh
Line 32 in c3f4ce5
Changing the comparison to
!= '/'*change fixed it for me, but im not a bash expert so this might not be the proper solution.