src/_Get-CciGetRepositoryName.ps1
|
function _Get-CciGetRepositoryName { [CmdletBinding()] param( [Parameter(Mandatory)] [string]$FeedName ) # PSResource repository names registered locally are prefixed so they're # easy to spot alongside PSGallery and any user-registered repos. "Cci-$FeedName" } |