ps/Modules/Alkami.PowerShell.Choco/Public/Get-ChocoPublicPassThruFeedUrl.ps1

11 lines
238 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Get-ChocoPublicPassThruFeedUrl {
<#
.SYNOPSIS
Get the Choco public pass-thru feed URL
#>
[OutputType([string])]
[CmdletBinding()]
Param()
return "https://packagerepo.orb.alkamitech.com/nuget/chocolatey.org"
}