Skip to content

Commit 43c8bff

Browse files
Switch to PowerShell Gallery mirror (#5150)
1 parent 3920717 commit 43c8bff

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.pipelines/vscode-powershell-Official.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,7 @@ extends:
172172
$manifest = Test-ModuleManifest $(Build.SourcesDirectory)/modules/PowerShellEditorServices/PowerShellEditorServices.psd1
173173
Write-Host Using PowerShellEditorServices v$($manifest.Version)
174174
displayName: PowerShellEditorServices version
175-
- pwsh: |
176-
Register-PSRepository -Name CFS -SourceLocation "https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell/nuget/v2" -InstallationPolicy Trusted
177-
Install-Module -Repository CFS -Name Microsoft.PowerShell.PSResourceGet
178-
./tools/installPSResources.ps1 -PSRepository CFS
175+
- pwsh: ./tools/installPSResources.ps1 -PSRepository CFS
179176
displayName: Install PSResources
180177
- pwsh: Invoke-Build Test -Configuration $(BuildConfiguration)
181178
displayName: Run tests

tools/installPSResources.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ param(
66
)
77

88
if ($PSRepository -eq "CFS" -and -not (Get-PSResourceRepository -Name CFS -ErrorAction SilentlyContinue)) {
9-
Register-PSResourceRepository -Name CFS -Uri "https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell/nuget/v3/index.json"
9+
Register-PSResourceRepository -Name CFS -Uri "https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/PowerShellGalleryMirror/nuget/v3/index.json"
1010
}
1111

1212
# NOTE: Due to a bug in Install-PSResource with upstream feeds, we have to

0 commit comments

Comments
 (0)