Skip to content

Commit

Permalink
👍 update ros2 version for linux distro
Browse files Browse the repository at this point in the history
  • Loading branch information
chuoru authored Nov 23, 2024
1 parent fbd3b62 commit 787c8be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion install-dependencies/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ async function get_ros_distro()
}
if(dist_name == 'jammy')
{
return [true, 'iron'];
return [true, 'humble'];
}
if(dist_name == 'noble')
{
return [true, 'jazzy'];
}
core.setFailed(`Cannot determine ROS distro for Linux distro: ${dist_name}`);
}
Expand Down

0 comments on commit 787c8be

Please sign in to comment.