Skip to content
Snippets Groups Projects
Commit 8b6e5d3d authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Handle 18.04 in APT setup (refs #25462).

parent 033dc6cf
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@ echo "Updating /etc/apt/sources.list file."
cp sources16.list /etc/apt/sources.list
if ( rgrep '14.04' /etc/lsb-release >/dev/null ); then
sed -i 's@xenial@trusty@' /etc/apt/sources.list
elif ( rgrep '18.04' /etc/lsb-release >/dev/null ); then
sed -i 's@xenial@bionic@' /etc/apt/sources.list
fi
# modify sources.list to use ubicast cache
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment