diff --git a/README.md b/README.md index 929a53c..43b6f47 100644 --- a/README.md +++ b/README.md @@ -22,19 +22,30 @@ curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash -s -- --manual ``` -### Windows (WSL/Git Bash) -```bash -# 🎯 SuperCharge Claude Code (all customizations) -curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash +### Windows Installation Options -# 🔧 Install Claude Code + Z.AI API -curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash - -# 📖 Show manual instructions (no installation) -curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash -s -- --manual +#### Option 1: WSL (Windows Subsystem for Linux) - **Recommended** +```powershell +# Open PowerShell or Command Prompt, then run: +wsl bash -c "curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash" ``` -> **🪟 Windows Users:** Run commands in WSL (Windows Subsystem for Linux), Git Bash, or download scripts and run with `bash script.sh` +#### Option 2: Git Bash +```bash +# Open Git Bash and run: +curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash +``` + +#### Option 3: Download & Run +```powershell +# Download the script +Invoke-WebRequest -Uri "https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh" -OutFile "supercharge.sh" + +# Run in WSL +wsl bash supercharge.sh +``` + +> **⚠️ Important:** Do NOT run curl commands directly in PowerShell. The syntax is different. Use WSL or Git Bash for bash commands. ---