Skip to content

Commit f3eb95a

Browse files
authored
xds-k8s buildscripts: Add missing quotation marks. (grpc#27389)
These were missed when creating the Python virtual env.
1 parent 4d7ad52 commit f3eb95a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/internal_ci/linux/grpc_xds_k8s_install_test_driver.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ test_driver_pip_install() {
153153
echo "Found python virtual environment directory: ${venv_dir}"
154154
else
155155
echo "Creating python virtual environment: ${venv_dir}"
156-
"python${PYTHON_VERSION} -m venv ${venv_dir}"
156+
"python${PYTHON_VERSION}" -m venv "${venv_dir}"
157157
fi
158158
# Intentional: No need to check python venv activate script.
159159
# shellcheck source=/dev/null

0 commit comments

Comments
 (0)