mirror of
https://github.com/automazeio/ccpm.git
synced 2025-10-09 13:41:06 +03:00
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:
@@ -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.
|
||||
|
||||
|
||||
@@ -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
|
||||
```
|
||||
|
||||
#### Windows(PowerShell)
|
||||
```bash
|
||||
cd path/to/your/project/
|
||||
iwr -useb https://automaze.io/ccpm | iex
|
||||
iwr -useb https://automaze.io/ccpm/install | iex
|
||||
```
|
||||
> ⚠️ **重要**:如果你已有`.claude`目录,请将此仓库克隆到不同目录,然后将克隆的`.claude`目录内容复制到你项目的`.claude`目录中。
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user