We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a097f53 commit e165fcdCopy full SHA for e165fcd
scripts/Helpers/Helpers.psm1
@@ -314,9 +314,9 @@ function Install-PSModule {
314
$PSModulePath = $env:PSModulePath -split [System.IO.Path]::PathSeparator | Select-Object -First 1
315
$codePath = New-Item -Path "$PSModulePath/$moduleName/999.0.0" -ItemType Directory -Force | Select-Object -ExpandProperty FullName
316
Copy-Item -Path "$Path/*" -Destination $codePath -Recurse -Force
317
- LogGroup 'Importing module' {
318
- Import-Module -Name $moduleName -Verbose
319
- }
+ Write-Host '::group::Importing module'
+ Import-Module -Name $moduleName -Verbose
+ Write-Host '::endgroup::'
320
if ($PassThru) {
321
return $codePath
322
}
0 commit comments