diff --git a/ubuntu/18.04/install.sh b/ubuntu/18.04/install.sh index 75f5958..8842ecd 100644 --- a/ubuntu/18.04/install.sh +++ b/ubuntu/18.04/install.sh @@ -11,16 +11,14 @@ # Update our machine to the latest code if we need to. # -sudo apt update -sudo apt upgrade -y +# Check if we have the bionic-proposed sources list +sudo cat /etc/apt/sources.list | grep bionic-proposed > /dev/null +if [ "$?" == "1" ]; then +sudo bash -c 'echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed restricted main multiverse universe" >> /etc/apt/sources.list <