openclawsetup 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,12 +17,12 @@
17
17
 
18
18
  **macOS / Linux:**
19
19
  ```bash
20
- curl -fsSL https://gitee.com/peterye/openclawsetup/raw/main/install.sh | bash
20
+ curl -fsSL https://unpkg.com/openclawsetup/install.sh | bash
21
21
  ```
22
22
 
23
23
  **Windows PowerShell:**
24
24
  ```powershell
25
- irm https://gitee.com/peterye/openclawsetup/raw/main/install.ps1 | iex
25
+ irm https://unpkg.com/openclawsetup/install.ps1 | iex
26
26
  ```
27
27
 
28
28
  ### 方式二:npx(需要已安装 Node.js 18+)
@@ -59,7 +59,7 @@ npx openclawsetup
59
59
 
60
60
  ```bash
61
61
  # macOS/Linux - 一键脚本
62
- curl -fsSL https://gitee.com/peterye/openclawsetup/raw/main/install.sh | bash
62
+ curl -fsSL https://unpkg.com/openclawsetup/install.sh | bash
63
63
 
64
64
  # 或者 npx(需要 Node.js)
65
65
  npx openclawsetup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclawsetup",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "一键安装 OpenClaw - 自动完成基础部署,无需交互",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,17 +8,17 @@
8
8
 
9
9
  **Linux (Debian/Ubuntu/CentOS 等):**
10
10
  ```bash
11
- curl -fsSL https://gitee.com/peterye/openclawsetup/raw/main/install.sh | bash
11
+ curl -fsSL https://unpkg.com/openclawsetup/install.sh | bash
12
12
  ```
13
13
 
14
14
  **macOS:**
15
15
  ```bash
16
- curl -fsSL https://gitee.com/peterye/openclawsetup/raw/main/install.sh | bash
16
+ curl -fsSL https://unpkg.com/openclawsetup/install.sh | bash
17
17
  ```
18
18
 
19
19
  **Windows PowerShell:**
20
20
  ```powershell
21
- irm https://gitee.com/peterye/openclawsetup/raw/main/install.ps1 | iex
21
+ irm https://unpkg.com/openclawsetup/install.ps1 | iex
22
22
  ```
23
23
 
24
24
  ### 方式二:npx(需要已安装 Node.js)
@@ -67,7 +67,7 @@ set OPENCLAW_PORT=8080 && npx openclawsetup
67
67
  **原因**:未安装 Node.js
68
68
  **解决**:使用一键脚本安装(会自动安装 Node.js)
69
69
  ```bash
70
- curl -fsSL https://gitee.com/peterye/openclawsetup/raw/main/install.sh | bash
70
+ curl -fsSL https://unpkg.com/openclawsetup/install.sh | bash
71
71
  ```
72
72
 
73
73
  ---