9b4a25799f
Replace fixed ackText with a rule-based AckProvider that picks response templates by message type and intent (translate, summary, rewrite, poster, ppt, mindmap, code, search, schedule). Pure sync, zero I/O, auto-falls back to config.ackText on any error. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
320 B
Bash
Executable File
18 lines
320 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cat >&2 <<'EOF'
|
|
`rsync_to_server.sh` 已禁用。
|
|
|
|
103 / Studio 生产发布禁止再走 rsync。
|
|
请改用:
|
|
|
|
bash scripts/release-portal-runtime-prod.sh
|
|
|
|
规则见:
|
|
- PRODUCTION_RELEASE_RULES.md
|
|
- docs/release-deploy.md
|
|
- docs/no-source-portal-migration.md
|
|
EOF
|
|
exit 1
|