From a65e1635258cdd1ab7d55c93778cb46e94b7fe86 Mon Sep 17 00:00:00 2001 From: Rajat Singhal Date: Thu, 20 Aug 2020 09:59:10 +0530 Subject: [PATCH] Add ROS Noetic for Ubuntu 20.04 --- tools/install_ros_deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"