diff --git a/tools/install_ros_deps.sh b/tools/install_ros_deps.sh index 4480dfbe9a..38db3357c3 100755 --- a/tools/install_ros_deps.sh +++ b/tools/install_ros_deps.sh @@ -3,7 +3,9 @@ set -x DISTRO="$(lsb_release -sc)" -if [[ "$DISTRO" == "bionic" ]]; then +if [[ "$DISTRO" == "focal" ]]; then + ROS_DISTRO="noetic" +elif [[ "$DISTRO" == "bionic" ]]; then ROS_DISTRO="melodic" elif [[ "$DISTRO" == "xenial" ]]; then ROS_DISTRO="kinetic"