Skip to content

Commit

Permalink
Make echo more helpful
Browse files Browse the repository at this point in the history
Jira ticket: CAMS-461
  • Loading branch information
jamesobrooks committed Dec 17, 2024
1 parent 7e510fb commit 1af08d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ops/scripts/utility/az-delete-branch-resources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ fi

# Delete by resource group
if [[ "${rgAppExists}" == "true" ]]; then
echo "Start deleting resource group ${app_rg}"
echo "Start deleting app resource group ${app_rg}"
az group delete -n "${app_rg}" --yes
fi

if [[ "${rgNetExists}" == "true" ]]; then
echo "Start deleting resource group ${network_rg}"
echo "Start deleting network resource group ${network_rg}"
az group delete -n "${network_rg}" --yes
fi

Expand Down

0 comments on commit 1af08d1

Please sign in to comment.