Skip to content

Commit cf4a921

Browse files
Add output of installed module files in main.ps1 after installation
1 parent 337a731 commit cf4a921

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/main.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ switch ($settings) {
2424
$PSModulePath = $env:PSModulePath -split [System.IO.Path]::PathSeparator | Select-Object -First 1
2525
$moduleInstallPath = New-Item -Path "$PSModulePath/$moduleName/999.0.0" -ItemType Directory -Force
2626
Copy-Item -Path $codePath -Destination $moduleInstallPath -Recurse -Force
27+
Get-ChildItem -Path $moduleInstallPath -Recurse | Select-Object FullName | Out-String
2728
}
2829
'SourceCode' {
2930
$codePath = Resolve-Path -Path 'src' | Select-Object -ExpandProperty Path

0 commit comments

Comments
 (0)