Skip to content

Commit 3e92618

Browse files
fix: Update error message for Azure CLI session verification in checkquota.sh
1 parent 964ea7c commit 3e92618

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

scripts/checkquota.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ IFS=', ' read -ra REGIONS <<< "$AZURE_REGIONS"
66
SUBSCRIPTION_ID="${AZURE_SUBSCRIPTION_ID}"
77
GPT_MIN_CAPACITY="${GPT_MIN_CAPACITY}"
88

9-
# Verify Azure CLI session (caller must already be logged in via OIDC)
109
echo "🔄 Verifying Azure CLI session..."
1110
if ! az account show > /dev/null 2>&1; then
12-
echo "❌ Error: Not logged in to Azure CLI. Ensure the calling workflow logs in via OIDC before running this script."
11+
echo "❌ Error: Not logged in to Azure CLI. Please run 'az login' and try again."
1312
exit 1
1413
fi
1514

0 commit comments

Comments
 (0)