diff --git a/install-macos.sh b/install-macos.sh index 0c5bed7..1da5a81 100755 --- a/install-macos.sh +++ b/install-macos.sh @@ -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 "" } diff --git a/install-windows.ps1 b/install-windows.ps1 index e2bd609..602125e 100644 --- a/install-windows.ps1 +++ b/install-windows.ps1 @@ -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 "" }