Skip to content

Commit

Permalink
fix az-mkrg (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakechill authored Feb 2, 2024
1 parent bd700b6 commit 8687d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile-az.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ az-login: ## Login into Azure
az account set --subscription $(AZURE_SUBSCRIPTION_ID)

az-mkrg: ## Create resource group
if ! az group exists --name $(AZURE_RESOURCE_GROUP) -o none; then \
if az group exists --name $(AZURE_RESOURCE_GROUP) | grep -q "false"; then \
az group create --name $(AZURE_RESOURCE_GROUP) --location $(AZURE_LOCATION) -o none; \
fi

Expand Down

0 comments on commit 8687d3e

Please sign in to comment.