We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 964ea7c commit 3e92618Copy full SHA for 3e92618
1 file changed
scripts/checkquota.sh
@@ -6,10 +6,9 @@ IFS=', ' read -ra REGIONS <<< "$AZURE_REGIONS"
6
SUBSCRIPTION_ID="${AZURE_SUBSCRIPTION_ID}"
7
GPT_MIN_CAPACITY="${GPT_MIN_CAPACITY}"
8
9
-# Verify Azure CLI session (caller must already be logged in via OIDC)
10
echo "🔄 Verifying Azure CLI session..."
11
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."
+ echo "❌ Error: Not logged in to Azure CLI. Please run 'az login' and try again."
13
exit 1
14
fi
15
0 commit comments