更新脚本标题:OpenClaw 一键部署安装器

从"OpenClaw + MiniMax 安装器"改为"OpenClaw 一键部署安装器",
因为脚本支持多种模型提供商,不限于 MiniMax。

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Rick Mu
2026-02-13 14:11:19 +11:00
parent 45f3c0f66b
commit 5bbd17885a
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
set -euo pipefail
# ─────────────────────────────────────────────
# OpenClaw + MiniMax 一键安装脚本 (macOS)
# OpenClaw 一键部署安装脚本 (macOS)
# ─────────────────────────────────────────────
# 颜色
@@ -21,7 +21,7 @@ error() { echo -e "${RED}[错误]${NC} $*"; exit 1; }
header() {
echo ""
echo -e "${BOLD}========================================${NC}"
echo -e "${BOLD} OpenClaw + MiniMax 安装器 (macOS)${NC}"
echo -e "${BOLD} OpenClaw 一键部署安装器 (macOS)${NC}"
echo -e "${BOLD}========================================${NC}"
echo ""
}

View File

@@ -1,5 +1,5 @@
# ─────────────────────────────────────────────
# OpenClaw + MiniMax 一键安装脚本 (Windows)
# OpenClaw 一键部署安装脚本 (Windows)
# 安装 WSL2 + Ubuntu然后在 WSL 中设置 OpenClaw
# ─────────────────────────────────────────────
@@ -13,7 +13,7 @@ function Write-Err($msg) { Write-Host "[错误] $msg" -ForegroundColor Red;
function Write-Header {
Write-Host ""
Write-Host "========================================" -ForegroundColor White
Write-Host " OpenClaw + MiniMax 安装器 (Windows)" -ForegroundColor White
Write-Host " OpenClaw 一键部署安装器 (Windows)" -ForegroundColor White
Write-Host "========================================" -ForegroundColor White
Write-Host ""
}