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.
2 parents 7790fbe + 862662f commit b7fd7c6Copy full SHA for b7fd7c6
cluster/gce/list-resources.sh
@@ -49,7 +49,7 @@ function gcloud-list() {
49
local attempt=1
50
local result=""
51
while true; do
52
- if result=$(gcloud "${group}" "${resource}" list --project="${PROJECT}" "${filter:+--filter="$filter"}" "${@:4}"); then
+ if result=$(gcloud "${group}" "${resource}" list --project="${PROJECT}" ${filter:+--filter="$filter"} "${@:4}"); then
53
if [[ -n "${GREP_REGEX:-}" ]]; then
54
result=$(echo "${result}" | grep "${GREP_REGEX}" || true)
55
fi
0 commit comments