Remove need to use --debug with py26

This commit is contained in:
Brad Warren
2016-02-01 16:05:39 -08:00
parent 34650cd4ad
commit fa49976baf
2 changed files with 2 additions and 6 deletions
+1 -3
View File
@@ -105,9 +105,7 @@ DeterminePythonVersion() {
fi fi
PYVER=`"$LE_PYTHON" --version 2>&1 | cut -d" " -f 2 | cut -d. -f1,2 | sed 's/\.//'` PYVER=`"$LE_PYTHON" --version 2>&1 | cut -d" " -f 2 | cut -d. -f1,2 | sed 's/\.//'`
if [ $PYVER -eq 26 ]; then if [ $PYVER -lt 26 ]; then
ExperimentalBootstrap "Python 2.6"
elif [ $PYVER -lt 26 ]; then
echo "You have an ancient version of Python entombed in your operating system..." echo "You have an ancient version of Python entombed in your operating system..."
echo "This isn't going to work; you'll need at least version 2.6." echo "This isn't going to work; you'll need at least version 2.6."
exit 1 exit 1
@@ -105,9 +105,7 @@ DeterminePythonVersion() {
fi fi
PYVER=`"$LE_PYTHON" --version 2>&1 | cut -d" " -f 2 | cut -d. -f1,2 | sed 's/\.//'` PYVER=`"$LE_PYTHON" --version 2>&1 | cut -d" " -f 2 | cut -d. -f1,2 | sed 's/\.//'`
if [ $PYVER -eq 26 ]; then if [ $PYVER -lt 26 ]; then
ExperimentalBootstrap "Python 2.6"
elif [ $PYVER -lt 26 ]; then
echo "You have an ancient version of Python entombed in your operating system..." echo "You have an ancient version of Python entombed in your operating system..."
echo "This isn't going to work; you'll need at least version 2.6." echo "This isn't going to work; you'll need at least version 2.6."
exit 1 exit 1