chore: address cleanup script linter warnings

chore: address cleanup script linter warnings
This commit is contained in:
Chris Hawk 2023-11-13 14:02:34 -08:00 committed by GitHub
commit a6aa4469ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,12 +42,13 @@ cleanup_resource() {
if [ -z "$extra_list_arg" ] if [ -z "$extra_list_arg" ]
then then
resources=( $(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)") ) mapfile -t resources < <(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)")
else else
resources=( $(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)" "${extra_list_arg}") ) mapfile -t resources < <(gcloud "${resource_group}" "${resource}" list --project="${PROJECT_ID}" --format="csv[no-heading](name)" "${extra_list_arg}")
fi fi
for resource_id in $resources; do for resource_id in "${resources[@]}"
do
if [ -z "$extra_delete_arg" ] if [ -z "$extra_delete_arg" ]
then then
gcloud "${resource_group}" "${resource}" delete "${resource_id}" --project="${PROJECT_ID}" -q gcloud "${resource_group}" "${resource}" delete "${resource_id}" --project="${PROJECT_ID}" -q