From ebbd7a230aa2976a3e700176319c229ed6c3bce7 Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Sat, 30 Nov 2024 17:56:16 +0100 Subject: [PATCH] fix(winget): use correct hash URL --- packages/winget/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/winget/build.ps1 b/packages/winget/build.ps1 index c139aeba..3bcca8dd 100644 --- a/packages/winget/build.ps1 +++ b/packages/winget/build.ps1 @@ -18,7 +18,7 @@ function Get-HashForArchitecture { [string] $Version ) - $hash = (new-object Net.WebClient).DownloadString("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v$Version/install-$Architecture.msi.sha256") + $hash = (new-object Net.WebClient).DownloadString("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/$Version/install-$Architecture.msi.sha256") return $hash.Trim() }