File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,19 @@ packages which have not released to a central package manager.
1818. PARAMETER DocRepoLocation
1919Location of the docs.microsoft.com reference docs repo.
2020
21+ . PARAMETER PackageSourceOverride
22+ Optional parameter to supply a different package source (useful for daily dev
23+ docs generation from pacakges which are not published to the default feed). This
24+ variable is meant to be used in the domain-specific business logic in
25+ &$UpdateDocsMsPackagesFn
26+
2127#>
2228param (
2329 [Parameter (Mandatory = $true )]
24- $DocRepoLocation # the location of the cloned doc repo
30+ [string ] $DocRepoLocation , # the location of the cloned doc repo
31+
32+ [Parameter (Mandatory = $false )]
33+ [string ] $PackageSourceOverride
2534)
2635
2736. (Join-Path $PSScriptRoot common.ps1)
You can’t perform that action at this time.
0 commit comments