Skip to content

Commit

Permalink
fix: hack to bring iron back from the dead
Browse files Browse the repository at this point in the history
  • Loading branch information
russkel committed Dec 10, 2024
1 parent 3beb889 commit c92aedc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion platform_cli/groups/packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ def install_deps(package: str): # type: ignore reportUnusedFunction
# If we find a package with that name, only install the deps for that package
from_paths = packages[package] if package else package_dir
refresh_deps.callback() # type: ignore
call(f"rosdep install -y --rosdistro {get_ros_distro()} --from-paths {from_paths} -i")
distro = get_ros_distro()
if distro == "iron":
distro = "iron --include-eol-distros"

call(f"rosdep install -y --rosdistro {distro} --from-paths {from_paths} -i")

@pkg.command(name="get-sources")
def get_sources(): # type: ignore reportUnusedFunction
Expand Down

0 comments on commit c92aedc

Please sign in to comment.