You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just ran into this problem where the rosinstall snippets generated for some packages in indigo are invalid. For example, eigen_stl_containers's snippet:
I just ran into this problem where the rosinstall snippets generated for some packages in indigo are invalid. For example,
eigen_stl_containers
's snippet:You can see here that the
uri
is not pointing to a tarball. By comparison a valid snippet is:I have determined that this is because the entry in the
distribution.yaml
file for Indigo is missing the.git
extension:I have opened a pull request to fix those missing extensions and add a check for rosdistro CI to check for them here:
https://github.com/ros/rosdistro/pull/3204/files
Ultimately, even if we fix the missing extensions in the rosdistro file, this line of code:
https://github.com/ros-infrastructure/rosinstall_generator/blob/master/src/rosinstall_generator/distro.py#L135
Is pretty fragile. We should at least assert that it ends with
.git
and fail because we cannot convert it otherwise.The text was updated successfully, but these errors were encountered: