From bb41dd6dc5c5e876c948661f6291e1aef97037c9 Mon Sep 17 00:00:00 2001 From: Ryan Friedman Date: Mon, 16 Sep 2024 18:13:38 -0600 Subject: [PATCH] Tools: Remove bionic support for ubuntu setup Signed-off-by: Ryan Friedman --- Tools/environment_install/install-prereqs-ubuntu.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Tools/environment_install/install-prereqs-ubuntu.sh b/Tools/environment_install/install-prereqs-ubuntu.sh index ea22a423c4b491..1c194328014268 100755 --- a/Tools/environment_install/install-prereqs-ubuntu.sh +++ b/Tools/environment_install/install-prereqs-ubuntu.sh @@ -83,10 +83,8 @@ PYTHON_V="python3" # starting from ubuntu 20.04, python isn't symlink to defaul PIP=pip3 if [ ${RELEASE_CODENAME} == 'bionic' ] ; then - SITLFML_VERSION="2.4" - SITLCFML_VERSION="2.4" - PYTHON_V="python3" - PIP=pip3 + echo "ArduPilot no longer supports developing on this deprecated operating system." + exit 1 elif [ ${RELEASE_CODENAME} == 'bookworm' ]; then SITLFML_VERSION="2.5" SITLCFML_VERSION="2.5"