From 5bbd17885a9f7676343d9befbf82ec4f7f36ab6a Mon Sep 17 00:00:00 2001 From: Rick Mu Date: Fri, 13 Feb 2026 14:11:19 +1100 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=84=9A=E6=9C=AC=E6=A0=87?= =?UTF-8?q?=E9=A2=98=EF=BC=9AOpenClaw=20=E4=B8=80=E9=94=AE=E9=83=A8?= =?UTF-8?q?=E7=BD=B2=E5=AE=89=E8=A3=85=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 从"OpenClaw + MiniMax 安装器"改为"OpenClaw 一键部署安装器", 因为脚本支持多种模型提供商,不限于 MiniMax。 Co-Authored-By: Claude Sonnet 4.5 --- install-macos.sh | 4 ++-- install-windows.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 "" }