Drop double square brackets tests in install script (#718)

sh doesn't support double square brackets tests which are a bash feature.
This commit replace them with single square brackets tests
This commit is contained in:
Fulvio Esposito 2019-11-22 12:26:14 +01:00 committed by Tom Christie
parent 338d5ab0ae
commit 9b4dff44c3
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
#!/bin/sh -e
# Use the Python executable provided from the `-p` option, or a default.
[[ $1 = "-p" ]] && PYTHON=$2 || PYTHON="python3"
[ "$1" = "-p" ] && PYTHON=$2 || PYTHON="python3"
MIN_VERSION="(3, 6)"
VERSION_OK=`"$PYTHON" -c "import sys; print(sys.version_info[0:2] >= $MIN_VERSION and '1' or '');"`
if [[ -z "$VERSION_OK" ]] ; then
if [ -z "$VERSION_OK" ] ; then
PYTHON_VERSION=`"$PYTHON" -c "import sys; print('%s.%s' % sys.version_info[0:2]);"`
DISP_MIN_VERSION=`"$PYTHON" -c "print('%s.%s' % $MIN_VERSION)"`
echo "ERROR: Python $PYTHON_VERSION detected, but $DISP_MIN_VERSION+ is required."