Skip to content

Commit

Permalink
fix make resource cleanup target whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jpflueger committed Jun 3, 2020
1 parent a79ee5f commit 0eabd13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ test-process-coverage:
test-cleanup-azure-resources:
# Delete the resource groups that match the pattern
for rgname in `az group list --query "[*].[name]" -o table | grep '^${TEST_RESOURCE_PREFIX}' `; do \
echo "$$rgname will be deleted"; \
az group delete --name $$rgname --no-wait --yes; \
done
echo "$$rgname will be deleted"; \
az group delete --name $$rgname --no-wait --yes; \
done

# Build the docker image
docker-build:
Expand Down

0 comments on commit 0eabd13

Please sign in to comment.