Skip to content

Commit 99ebf51

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
add verbose output to installing modules
1 parent 3cb9905 commit 99ebf51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,13 +362,13 @@ if ($Test) {
362362
$FullyQualifiedName = @{ModuleName="PSDesiredStateConfiguration";ModuleVersion="2.0.7"}
363363
if (-not(Get-Module -ListAvailable -FullyQualifiedName $FullyQualifiedName))
364364
{ "Installing module PSDesiredStateConfiguration 2.0.7"
365-
Install-PSResource -Name PSDesiredStateConfiguration -Version 2.0.7 -Repository CFS
365+
Install-PSResource -Name PSDesiredStateConfiguration -Version 2.0.7 -Repository CFS -Verbose
366366
}
367367
}
368368

369369
if (-not(Get-Module -ListAvailable -Name Pester))
370370
{ "Installing module Pester"
371-
Install-PSResource Pester -WarningAction Ignore -Repository CFS
371+
Install-PSResource Pester -WarningAction Ignore -Repository CFS -Verbose
372372
}
373373

374374
foreach ($project in $projects) {

0 commit comments

Comments
 (0)