clawcontrol 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,13 +13,13 @@ ClawControl makes OpenClaw setup repeatable and fast. It handles VPS provisionin
13
13
  One-liner (Linux / macOS):
14
14
 
15
15
  ```bash
16
- curl -fsSL https://openclaw.ai/install.sh | bash
16
+ curl -fsSL https://raw.githubusercontent.com/ipenywis/clawcontrol/main/install.sh | bash
17
17
  ```
18
18
 
19
19
  One-liner (Windows PowerShell):
20
20
 
21
21
  ```powershell
22
- irm https://openclaw.ai/install.ps1 | iex
22
+ irm https://raw.githubusercontent.com/ipenywis/clawcontrol/main/install.ps1 | iex
23
23
  ```
24
24
 
25
25
  Package managers (Bun must be installed — the install scripts handle this automatically):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawcontrol",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CLI tool for deploying and managing OpenClaw instances on VPS providers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",