Fix agent count

This commit is contained in:
2025-09-28 23:34:56 +07:00
parent 57b3603302
commit 014a3ed7e5
5 changed files with 6 additions and 13 deletions

View File

@@ -82,11 +82,11 @@ log "🚀 Starting safe migration for environment: $ENVIRONMENT"
# Validate environment
case $ENVIRONMENT in
"Development"|"Sandbox"|"Production"|"Oda")
"Development"|"SandboxLocal"|"Production"|"Oda")
log "✅ Environment '$ENVIRONMENT' is valid"
;;
*)
error "❌ Invalid environment '$ENVIRONMENT'. Use: Development, Sandbox, Production, or Oda"
error "❌ Invalid environment '$ENVIRONMENT'. Use: Development, SandboxLocal, Production, or Oda"
;;
esac