From 6ff815eed3628c4ca09131f75027e2d985b0d101 Mon Sep 17 00:00:00 2001 From: MyDrift Date: Thu, 8 Aug 2024 04:06:42 +0200 Subject: [PATCH] fix windev (#2537) --- windev.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windev.ps1 b/windev.ps1 index 6ad84f4f..3e1805f0 100644 --- a/windev.ps1 +++ b/windev.ps1 @@ -28,7 +28,7 @@ function Get-LatestRelease { function RedirectToLatestPreRelease { $latestRelease = Get-LatestRelease if ($latestRelease) { - $url = "https://raw.githubusercontent.com/ChrisTitusTech/winutil/$latestRelease/winutil.ps1" + $url = "https://github.com/ChrisTitusTech/winutil/releases/download/$latestRelease/winutil.ps1" } else { Write-Host 'Unable to determine latest pre-release version.' -ForegroundColor Red Write-Host "Using latest Full Release"