Fix Gitea raw file URLs (use /raw/branch/main/ instead of /raw/main/)

Gitea's raw file URL format requires /raw/branch/{branch}/ not /raw/{branch}/
This fixes the 403 redirect issue when downloading install-windows.ps1

Changed URLs:
- /raw/main/install-windows.ps1 → /raw/branch/main/install-windows.ps1

Also updated WordPress article with correct URLs.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
uroma
2026-01-22 19:15:04 +00:00
Unverified
parent fa41790682
commit cc63d46a03

View File

@@ -25,10 +25,10 @@ cd SuperCharged-Claude-Code-Upgrade
#### Option 1: PowerShell Installer ⭐ **Native - Recommended** #### Option 1: PowerShell Installer ⭐ **Native - Recommended**
```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/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 -
# OR download and run manually # OR download and run manually
Invoke-WebRequest -Uri "https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-windows.ps1" -OutFile "install-windows.ps1" Invoke-WebRequest -Uri "https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/branch/main/install-windows.ps1" -OutFile "install-windows.ps1"
pwsh -ExecutionPolicy Bypass -File install-windows.ps1 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"