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:
@@ -25,10 +25,10 @@ cd SuperCharged-Claude-Code-Upgrade
|
||||
#### Option 1: PowerShell Installer ⭐ **Native - Recommended**
|
||||
```powershell
|
||||
# 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
|
||||
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
|
||||
|
||||
# OR right-click install-windows.ps1 and select "Run with PowerShell"
|
||||
|
||||
Reference in New Issue
Block a user