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
380 B
Bash
Executable File
18 lines
380 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cat >&2 <<'EOF'
|
|
`scripts/sync-to-105.sh` 已禁用。
|
|
|
|
本机不允许直接 rsync 到 105 阿里云,也不允许把 105 当成源码发布目标。
|
|
请改用:
|
|
|
|
bash scripts/release-portal-runtime-prod.sh
|
|
|
|
规则见:
|
|
- ENGINEERING_WORKFLOW_RULES.md
|
|
- PRODUCTION_RELEASE_RULES.md
|
|
- docs/no-source-portal-migration.md
|
|
EOF
|
|
exit 1
|