google-cloud-cli: fix unquoted value in env variable (#45207)

This commit is contained in:
Simo Tuomisto 2024-07-15 15:41:44 +03:00 committed by GitHub
parent c4082931e3
commit f7e601d352
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,7 +58,7 @@ def setup_build_environment(self, env):
# https://cloud.google.com/sdk/gcloud/reference/topic/startup
env.set("CLOUDSDK_PYTHON", self.spec["python"].command.path)
# ~70 dependencies with no hints as to what versions are supported, just use bundled deps
env.set("CLOUDSDK_PYTHON_SITEPACKAGES", 0)
env.set("CLOUDSDK_PYTHON_SITEPACKAGES", "0")
def setup_run_environment(self, env):
self.setup_build_environment(env)