Skip to content

Commit ed89e88

Browse files
committed
Simplify installation as only noetic is supported from now on.
1 parent 35c163d commit ed89e88

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

install/prepare-jenkins-slave.sh

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,12 @@ ROS_VERSION=`rosversion -d`
44
echo "ROS version: ${ROS_VERSION}"
55

66
# Build dependencies.
7-
if [[ $ROS_VERSION = 'melodic' ]]
8-
then
9-
sudo apt-get install -y python-wstool python-catkin-tools
10-
else
11-
sudo apt-get install -y python3-wstool python3-catkin-tools
12-
fi
7+
sudo apt install -y python3-wstool python3-catkin-tools
138

149
# Package dependencies.
1510
echo "Installing CGAL dependencies."
16-
sudo apt-get install -y libcgal-dev
11+
sudo apt install -y libcgal-dev
1712
echo "Installing MONO dependencies."
18-
sudo apt-get install -y mono-devel
13+
sudo apt install -y mono-devel
1914
echo "Installig GLOG dependencices."
20-
sudo apt-get install -y libgoogle-glog-dev
15+
sudo apt install -y libgoogle-glog-dev

0 commit comments

Comments
 (0)