From cc63d46a0308a42f290e531a02172bbf39cd8cea Mon Sep 17 00:00:00 2001 From: uroma Date: Thu, 22 Jan 2026 19:15:04 +0000 Subject: [PATCH] Fix Gitea raw file URLs (use /raw/branch/main/ instead of /raw/main/) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12c7932..ce62003 100644 --- a/README.md +++ b/README.md @@ -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"