fix(linux): installer script prints maximum python version usable

This commit is contained in:
Stephan Koglin-Fischer 2023-06-16 15:18:23 +02:00 committed by GitHub
parent 4cbc802e36
commit 469dae8c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ done
if [ -z "$PYTHON" ]; then if [ -z "$PYTHON" ]; then
echo "A suitable Python interpreter could not be found" echo "A suitable Python interpreter could not be found"
echo "Please install Python 3.9 or higher before running this script. See instructions at $INSTRUCTIONS for help." echo "Please install Python $MINIMUM_PYTHON_VERSION or higher (maximum $MAXIMUM_PYTHON_VERSION) before running this script. See instructions at $INSTRUCTIONS for help."
read -p "Press any key to exit" read -p "Press any key to exit"
exit -1 exit -1
fi fi