mirror of https://github.com/encode/starlette.git
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:
parent
338d5ab0ae
commit
9b4dff44c3
|
@ -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."
|
||||
|
|
Loading…
Reference in New Issue