From 033f3755d9e30d30e736968a817e09dbdfa31100 Mon Sep 17 00:00:00 2001 From: Bahram Rushenas Date: Thu, 21 Aug 2025 18:30:23 -0700 Subject: [PATCH] Updated README.md The bicep deployment fails because of trailing hidden characters. So added "| tr -d '\r\n'" to the ofllowing line: PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a44ca53..93f7944 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ The following steps are required to deploy the infrastructure from the command l RESOURCE_GROUP=rg-chat-basic-${BASE_NAME} az group create -l $LOCATION -n $RESOURCE_GROUP - PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv) + PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv| tr -d '\r\n') # This takes about 10 minutes to run. az deployment group create -f ./infra-as-code/bicep/main.bicep \