Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Gerd Oberlechner <[email protected]>
  • Loading branch information
geoberle committed Oct 28, 2024
1 parent 30e6f0d commit 1d34b0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev-infrastructure/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ list:

fmt:
set -e; \
FILES="$$(find . -type f -name "*.bicep*")"; \
FILES="$$(find . -type f -name "*.bicep*" ! -name "*.tmpl.bicepparam")"; \
for file in $$FILES; do \
echo "az bicep format --file $${file}"; \
az bicep format --file $$file; \
Expand Down Expand Up @@ -147,7 +147,7 @@ region.wait:
@./ensure-no-running-deployment.sh $(REGIONAL_RESOURCEGROUP) $(REGIONAL_RG_DEPLOYMENT_NAME)
.PHONY: region.wait

region: regional.rg
region: region.wait regional.rg
az deployment group create \
--name $(REGIONAL_RG_DEPLOYMENT_NAME) \
--resource-group $(REGIONAL_RESOURCEGROUP) \
Expand All @@ -163,7 +163,7 @@ region.clean:
fi
.PHONY: region.clean

region.what-if: regional.rg
region.what-if: region.wait regional.rg
az deployment group what-if \
--name "region" \
--resource-group $(REGIONAL_RESOURCEGROUP) \
Expand Down

0 comments on commit 1d34b0a

Please sign in to comment.