From 0c1a2d15f119bf4c11303ff9aecc9e69a6b3a2ad Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 2 Jul 2026 14:54:19 +0800 Subject: docs: add manual installation instructions to README --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 5974806..988ecee 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,30 @@ For Windows: iwr -useb https://raw.githubusercontent.com/catilgrass/run/refs/heads/master/install/install.ps1 | iex ``` +## Or manually install + +For Linux: + +```bash +cd your-project +git clone https://github.com/catilgrass/run +mv run/.run run/run.ps1 run/run.sh ./ +rm -rf run +``` + +For Windows: + +```powershell +cd your-project +git clone https://github.com/catilgrass/run + +Move-Item -Path "run/.run" -Destination "./.run" -Force +Move-Item -Path "run/run.ps1" -Destination "./run.ps1" -Force +Move-Item -Path "run/run.sh" -Destination "./run.sh" -Force + +Remove-Item -Path "run" -Recurse -Force +``` + ## Usage ```bash -- cgit