From ae0c3577e74f092eb0df8ed4a9f07302808ecb1c Mon Sep 17 00:00:00 2001 From: jwillmartin Date: Thu, 7 Dec 2023 13:38:24 -0500 Subject: [PATCH] modified: scripts/install_dependencies.sh --- scripts/install_dependencies.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/install_dependencies.sh b/scripts/install_dependencies.sh index 2fa104c86..951d13967 100755 --- a/scripts/install_dependencies.sh +++ b/scripts/install_dependencies.sh @@ -3,8 +3,10 @@ # exit on errors set -e +source /etc/lsb-release + # add the STOL APT repository -echo "deb [trusted=yes] http://s3.amazonaws.com/stol-apt-repository develop main" > /etc/apt/sources.list.d/stol-apt-repository.list +echo "deb [trusted=yes] http://s3.amazonaws.com/stol-apt-repository ${DISTRIB_CODENAME} main" > /etc/apt/sources.list.d/stol-apt-repository.list apt-get update