xds-k8s buildscripts: Add missing quotation marks. (#27389)

These were missed when  creating the Python virtual env.
reviewable/pr27395/r1
Terry Wilson 4 years ago committed by GitHub
parent 4d7ad5271a
commit f3eb95aec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tools/internal_ci/linux/grpc_xds_k8s_install_test_driver.sh

@ -153,7 +153,7 @@ test_driver_pip_install() {
echo "Found python virtual environment directory: ${venv_dir}"
else
echo "Creating python virtual environment: ${venv_dir}"
"python${PYTHON_VERSION} -m venv ${venv_dir}"
"python${PYTHON_VERSION}" -m venv "${venv_dir}"
fi
# Intentional: No need to check python venv activate script.
# shellcheck source=/dev/null

Loading…
Cancel
Save