We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99891ef commit e645e06Copy full SHA for e645e06
hack/make-rules/test-e2e-node.sh
@@ -132,13 +132,15 @@ if [ "${remote}" = true ] && [ "${remote_mode}" = gce ] ; then
132
133
# Get the compute zone
134
zone=${ZONE:-"$(gcloud info --format='value(config.properties.compute.zone.value)')"}
135
+ zone=${zone// /}
136
if [[ ${zone} == "" ]]; then
137
echo "Could not find gcloud compute/zone when running: \`gcloud info --format='value(config.properties.compute.zone.value)'\`"
138
exit 1
139
fi
140
141
# Get the compute project
142
project=$(gcloud info --format='value(config.project)')
143
+ project=${project// /}
144
if [[ ${project} == "" ]]; then
145
echo "Could not find gcloud project when running: \`gcloud info --format='value(config.project)'\`"
146
0 commit comments