install_deps.sh: quiet warning in install_deps.sh

The unquoted check gave a 'binary operator expected' warning.
This commit is contained in:
Campbell Barton 2020-01-22 17:26:37 +11:00
parent a4cf2cf2de
commit 4099ad1984
1 changed files with 1 additions and 1 deletions

View File

@ -4713,7 +4713,7 @@ print_info() {
_1="-D PYTHON_VERSION=$PYTHON_VERSION_MIN"
PRINT " $_1"
_buildargs="$_buildargs $_1"
if [ -d $INST/python-$PYTHON_VERSION_MIN ]; then
if [ -d "$INST/python-$PYTHON_VERSION_MIN" ]; then
_1="-D PYTHON_ROOT_DIR=$INST/python-$PYTHON_VERSION_MIN"
PRINT " $_1"
_buildargs="$_buildargs $_1"