From c258310690b19d55656e91177b62f18c295b491c Mon Sep 17 00:00:00 2001 From: Friedrich Weinmann Date: Tue, 9 Sep 2025 19:32:55 +0200 Subject: [PATCH] fixed download url --- bootstrap.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.ps1 b/bootstrap.ps1 index 93bacba..86b418a 100644 --- a/bootstrap.ps1 +++ b/bootstrap.ps1 @@ -47,7 +47,7 @@ function Find-GalleryModule { [PSCustomObject]@{ Name = $moduleName Version = $latest.Version - Link = 'https://psg-prod-eastus.azureedge.net/packages/{0}.{1}.nupkg' -f $moduleName.ToLower(), $latest.Version + Link = 'https://cdn.powershellgallery.com/packages/{0}.{1}.nupkg' -f $moduleName.ToLower(), $latest.Version } } }