Skip to content

Commit b7ce99a

Browse files
Add output of available modules after installation in main.ps1
1 parent e0a502b commit b7ce99a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/main.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ switch ($settings) {
2626
$codePath = New-Item -Path "$PSModulePath/$moduleName/999.0.0" -ItemType Directory -Force
2727
Copy-Item -Path $modulePath -Destination $codePath -Recurse -Force
2828
Get-ChildItem -Path $codePath -Recurse | Select-Object FullName | Out-String
29+
30+
Get-Module -ListAvailable | Format-Table -AutoSize | Out-String
31+
2932
Import-Module -Name $moduleName -Verbose
3033
}
3134
'SourceCode' {

0 commit comments

Comments
 (0)