[Bash] Remove unquoting quotes (#10506)

As proposed by static analysis tool:
https://github.com/koalaman/shellcheck/wiki/SC2027
This commit is contained in:
Androbin 2017-06-08 18:50:22 +02:00 committed by gunan
parent 9a04938ff7
commit 284901b08f

2
configure vendored
View File

@ -103,7 +103,7 @@ function setup_python {
echo " $x"
done
set -- "${python_lib_path[@]}"
echo "Please input the desired Python library path to use. Default is ["$1"]"
echo "Please input the desired Python library path to use. Default is [$1]"
read b || true
if [ "$b" == "" ]; then
PYTHON_LIB_PATH=${python_lib_path[0]}