From d13826ad8e326ac37e7eab9f27ed19b76f3f80a7 Mon Sep 17 00:00:00 2001 From: Abdul-Microsoft Date: Thu, 5 Jun 2025 19:54:25 +0530 Subject: [PATCH] add execute permissions for validation scripts in preprovision hook --- azure.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure.yaml b/azure.yaml index 6193e3d5f..5a212cb3d 100644 --- a/azure.yaml +++ b/azure.yaml @@ -7,7 +7,7 @@ hooks: posix: shell: sh run: > - ./infra/scripts/validate_model_deployment_quota.sh --subscription "$AZURE_SUBSCRIPTION_ID" --location "${AZURE_ENV_OPENAI_LOCATION:-swedencentral}" --models-parameter "aiModelDeployments" + chmod u+r+x ./infra/scripts/validate_model_deployment_quota.sh; chmod u+r+x ./infra/scripts/validate_model_quota.sh; ./infra/scripts/validate_model_deployment_quota.sh --subscription "$AZURE_SUBSCRIPTION_ID" --location "${AZURE_ENV_OPENAI_LOCATION:-swedencentral}" --models-parameter "aiModelDeployments" interactive: false continueOnError: false