We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf7009 commit 11775bbCopy full SHA for 11775bb
‎scripts/helpers/Build/Update-PSModuleManifestAliasesToExport.ps1
@@ -85,11 +85,11 @@
85
86
Write-Host "Found aliases: [$($allAliases.Count)]"
87
foreach ($alias in $allAliases) {
88
- Write-Host " - [$($alias.Name)]"
+ Write-Host " - [$alias]"
89
}
90
$outputManifestPath = Join-Path -Path $ModuleSourceFolder -ChildPath "$ModuleName.psd1"
91
Write-Host "Output manifest path: [$outputManifestPath]"
92
Write-Host 'Setting module manifest with AliasesToExport'
93
- Set-ModuleManifest -Path $outputManifestPath -AliasesToExport $allAliases.Name -Verbose
+ Set-ModuleManifest -Path $outputManifestPath -AliasesToExport $allAliases -Verbose
94
95
0 commit comments