Skip to content

Commit d5eb28d

Browse files
🩹 [Refactor]: Update output handling in Import-PSModule.ps1 to convert table output to string for improved readability
1 parent 822c481 commit d5eb28d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎scripts/helpers/Build/Import-PSModule.ps1‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
Resolve-PSModuleDependency -ManifestFilePath $manifestFilePath
3030

3131
Write-Host ' - List installed modules'
32-
Get-InstalledPSResource | Format-Table -AutoSize
32+
Get-InstalledPSResource | Format-Table -AutoSize | Out-String
3333

3434
Write-Host " - Importing module [$moduleName] v999"
3535
Import-Module $Path

0 commit comments

Comments
 (0)