File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2929 $manifest = Get-ModuleManifest - Path $manifestFilePath - Verbose:$false
3030
3131 Write-Host " [$manifestPropertyName ]"
32- $aliasesToExport = (($manifest.AliasesToExport ).count -eq 0 ) -or ($manifest.AliasesToExport | IsNullOrEmpty ) ? ' *' : $manifest.AliasesToExport
32+ $aliasesToExport = (($manifest.AliasesToExport ).count -eq 0 ) -or [ string ]::IsNullOrEmpty ($manifest.AliasesToExport ) ? ' *' : $manifest.AliasesToExport
3333 $aliasesToExport | ForEach-Object {
3434 Write-Host " [$manifestPropertyName ] - [$_ ]"
3535 }
Original file line number Diff line number Diff line change 2929 $manifest = Get-ModuleManifest - Path $manifestFilePath - Verbose:$false
3030
3131 Write-Host " [$manifestPropertyName ]"
32- $cmdletsToExport = (($manifest.CmdletsToExport ).count -eq 0 ) -or ($manifest.CmdletsToExport | IsNullOrEmpty ) ? ' ' : $manifest.CmdletsToExport
32+ $cmdletsToExport = (($manifest.CmdletsToExport ).count -eq 0 ) -or [ string ]::IsNullOrEmpty ($manifest.CmdletsToExport ) ? ' ' : $manifest.CmdletsToExport
3333 $cmdletsToExport | ForEach-Object {
3434 Write-Host " [$manifestPropertyName ] - [$_ ]"
3535 }
You can’t perform that action at this time.
0 commit comments