Skip to content

Commit

Permalink
include eol distros in rosdep update (#661)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova authored Feb 27, 2025
2 parents 9ccf0e4 + 70485c4 commit e3ae28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy/tasks/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _install_rosdeps(self, connections: Group) -> GroupResult:
remote_src_path = os.path.join(self._remote_workspace, "src")
print_debug(f"Gathering rosdep install commands in {remote_src_path}")

cmd = f"rosdep update && rosdep install --simulate --default-yes --ignore-src --from-paths {remote_src_path}"
cmd = f"rosdep update --include-eol-distros && rosdep install --simulate --default-yes --ignore-src --from-paths {remote_src_path}"
print_debug(f"Calling {cmd}")
try:
gather_results = connections.run(cmd, hide=hide_output())
Expand Down

0 comments on commit e3ae28d

Please sign in to comment.