We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e165fcd commit 94abaceCopy full SHA for 94abace
scripts/Helpers/Helpers.psm1
@@ -310,7 +310,9 @@ function Install-PSModule {
310
$moduleName = Split-Path -Path $Path -Leaf
311
$manifestFilePath = Join-Path -Path $Path "$moduleName.psd1"
312
Write-Verbose " - Manifest file path: [$manifestFilePath]" -Verbose
313
+ Write-Host '::group::Resolving dependencies'
314
Resolve-PSModuleDependency -ManifestFilePath $manifestFilePath
315
+ Write-Host '::endgroup::'
316
$PSModulePath = $env:PSModulePath -split [System.IO.Path]::PathSeparator | Select-Object -First 1
317
$codePath = New-Item -Path "$PSModulePath/$moduleName/999.0.0" -ItemType Directory -Force | Select-Object -ExpandProperty FullName
318
Copy-Item -Path "$Path/*" -Destination $codePath -Recurse -Force
0 commit comments