Add experimental disclaimer for PowerShell installer
Users are now warned that the PowerShell installer is experimental and WSL is recommended for reliable installation. Changes: - README: Added warning banner, changed WSL to "Recommended" - PowerShell script: Added interactive warning at startup - WordPress article: Added yellow warning box before Windows section PowerShell installer now shows: - Yellow warning about experimental status - WSL command for reliable installation - Prompt to press Ctrl+C to exit or Enter to continue Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -22,7 +22,9 @@ cd SuperCharged-Claude-Code-Upgrade
|
|||||||
|
|
||||||
### Windows Installation Options
|
### Windows Installation Options
|
||||||
|
|
||||||
#### Option 1: PowerShell Installer ⭐ **Native - Recommended**
|
> **⚠️ Windows Users:** The PowerShell installer is **experimental** and may have bugs. We strongly recommend using **WSL** (Option 2) for a reliable installation experience.
|
||||||
|
|
||||||
|
#### Option 1: PowerShell Installer ⚠️ **Experimental - Use WSL Instead**
|
||||||
```powershell
|
```powershell
|
||||||
# Download and run the native PowerShell installer
|
# Download and run the native PowerShell installer
|
||||||
irm https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/branch/main/install-windows.ps1 | pwsh -ExecutionPolicy Bypass -
|
irm https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/branch/main/install-windows.ps1 | pwsh -ExecutionPolicy Bypass -
|
||||||
@@ -34,7 +36,7 @@ pwsh -ExecutionPolicy Bypass -File install-windows.ps1
|
|||||||
# OR right-click install-windows.ps1 and select "Run with PowerShell"
|
# OR right-click install-windows.ps1 and select "Run with PowerShell"
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Option 2: WSL (Windows Subsystem for Linux)
|
#### Option 2: WSL (Windows Subsystem for Linux) ⭐ **Recommended**
|
||||||
```bash
|
```bash
|
||||||
# Clone and run in WSL
|
# Clone and run in WSL
|
||||||
wsl bash -c "git clone https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade.git && cd SuperCharged-Claude-Code-Upgrade && ./supercharge.sh"
|
wsl bash -c "git clone https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade.git && cd SuperCharged-Claude-Code-Upgrade && ./supercharge.sh"
|
||||||
|
|||||||
@@ -77,6 +77,16 @@ function Show-Banner {
|
|||||||
╚═══════════════════════════════════════════════════════════════╝
|
╚═══════════════════════════════════════════════════════════════╝
|
||||||
|
|
||||||
"@ -ForegroundColor Cyan
|
"@ -ForegroundColor Cyan
|
||||||
|
|
||||||
|
# Show warning about experimental status
|
||||||
|
Write-Host ""
|
||||||
|
Write-Host "⚠️ WARNING: This PowerShell installer is EXPERIMENTAL and may have bugs." -ForegroundColor Yellow
|
||||||
|
Write-Host " For reliable installation, we recommend using WSL instead:" -ForegroundColor Yellow
|
||||||
|
Write-Host " wsl bash -c 'git clone https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade.git && cd SuperCharged-Claude-Code-Upgrade && ./supercharge.sh'" -ForegroundColor White
|
||||||
|
Write-Host ""
|
||||||
|
Write-Host " Press Ctrl+C to exit and use WSL, or press Enter to continue..." -ForegroundColor Cyan
|
||||||
|
Read-Host
|
||||||
|
Write-Host ""
|
||||||
}
|
}
|
||||||
|
|
||||||
function Test-ClaudeCode {
|
function Test-ClaudeCode {
|
||||||
|
|||||||
Reference in New Issue
Block a user