Update installation script URLs in README files to point to the new install path

- Changed installation script URLs from the old path to the new `/install` path for improved clarity and reliability.
- Updated both English and Chinese README files to reflect the new URLs.
- Ensured consistency across Unix/Linux/macOS and Windows installation instructions.

This change enhances the user experience by providing a clear and stable source for installation scripts.
This commit is contained in:
Ran Aroussi
2025-09-24 15:15:30 +01:00
parent a6817d39a3
commit 44d7dc369e
3 changed files with 10 additions and 10 deletions

View File

@@ -390,14 +390,14 @@ Teams using this system report:
```bash
cd path/to/your/project/
curl -sSL https://automaze.io/ccpm | bash
# or: wget -qO- https://automaze.io/ccpm | bash
curl -sSL https://automaze.io/ccpm/install | bash
# or: wget -qO- https://automaze.io/ccpm/install | bash
```
#### Windows (PowerShell)
```bash
cd path/to/your/project/
iwr -useb https://automaze.io/ccpm | iex
iwr -useb https://automaze.io/ccpm/install | iex
```
> ⚠️ **IMPORTANT**: If you already have a `.claude` directory, clone this repository to a different directory and copy the contents of the cloned `.claude` directory to your project's `.claude` directory.

View File

@@ -388,14 +388,14 @@ GitHub无需知道工作是如何完成的——只需知道工作已完成。
```bash
cd path/to/your/project/
curl -sSL https://automaze.io/ccpm | bash
# 或wget -qO- https://automaze.io/ccpm | bash
curl -sSL https://automaze.io/ccpm/install | bash
# 或wget -qO- https://automaze.io/ccpm/install | bash
```
#### WindowsPowerShell
```bash
cd path/to/your/project/
iwr -useb https://automaze.io/ccpm | iex
iwr -useb https://automaze.io/ccpm/install | iex
```
> ⚠️ **重要**:如果你已有`.claude`目录,请将此仓库克隆到不同目录,然后将克隆的`.claude`目录内容复制到你项目的`.claude`目录中。

View File

@@ -3,25 +3,25 @@
## Unix/Linux/macOS
```bash
curl -sSL https://automaze.io/ccpm | bash
curl -sSL https://automaze.io/ccpm/install | bash
```
Or with wget:
```bash
wget -qO- https://automaze.io/ccpm | bash
wget -qO- https://automaze.io/ccpm/install | bash
```
## Windows (PowerShell)
```powershell
iwr -useb https://automaze.io/ccpm | iex
iwr -useb https://automaze.io/ccpm/install | iex
```
Or download and execute:
```powershell
curl -o ccpm.bat https://automaze.io/ccpm && ccpm.bat
curl -o ccpm.bat https://automaze.io/ccpm/install && ccpm.bat
```
## One-liner alternatives