We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7265fb commit 8bc4243Copy full SHA for 8bc4243
tools/installPSResources.ps1
@@ -5,8 +5,9 @@ param(
5
[string]$PSRepository = "PSGallery"
6
)
7
8
+# Install-PSResource can't use the project-scoped feed because OneBranch doesn't auth it
9
if ($PSRepository -eq "CFS" -and -not (Get-PSResourceRepository -Name CFS -ErrorAction SilentlyContinue)) {
- Register-PSResourceRepository -Name CFS -Uri "https://pkgs.dev.azure.com/msazure/One/_packaging/PowerShellGalleryMirror/nuget/v3/index.json"
10
+ Register-PSResourceRepository -Name CFS -Uri "https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/PowerShellGalleryMirror/nuget/v3/index.json"
11
}
12
13
# NOTE: Due to a bug in Install-PSResource with upstream feeds, we have to
0 commit comments