allow rolling with python 3.8

This commit is contained in:
rootzoll
2022-03-09 22:31:19 +01:00
parent da1e904822
commit 2315b438b6

View File

@@ -318,6 +318,11 @@ elif [ -f "/usr/bin/python3.10" ]; then
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1
sudo ln -s /usr/bin/python3.10 /usr/bin/python3.9 sudo ln -s /usr/bin/python3.10 /usr/bin/python3.9
echo "python calls python3.10" echo "python calls python3.10"
elif [ -f "/usr/bin/python3.8" ]; then
# use python 3.8 if available
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1
echo "python calls python3.8"
sudo make altinstall
else else
echo "!!! FAIL !!!" echo "!!! FAIL !!!"
echo "There is no tested version of python present" echo "There is no tested version of python present"