Skip to content

Commit dede427

Browse files
committed
update Write-Host
1 parent 21a15e7 commit dede427

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ function PrerequisitesLoaded {
2424
Write-Host 'Installed!'
2525
}
2626
if (get-module PSDepend -ListAvailable) {
27-
Write-Host -NoNewLine "Importing PSDepend module"
27+
Write-Host "Importing PSDepend module ..." -NoNewLine
2828
Import-Module PSDepend -Force
29-
Write-Host '...Loaded!'
29+
Write-Host 'Loaded!'
3030

31-
Write-Host -NoNewLine 'Installing dependencies...'
31+
Write-Host 'Installing dependencies...' -NoNewLine
3232
Invoke-PSDepend -Path $(Join-Path $(Get-Location) 'Requirements.psd1') -Test
3333
Invoke-PSDepend -Path $(Join-Path $(Get-Location) 'Requirements.psd1') -Force
3434
Invoke-PSDepend -Path $(Join-Path $(Get-Location) 'Requirements.psd1') -Import -Force

plugins/plaster/template/scaffold/Build.template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ function PrerequisitesLoaded {
2424
Write-Host 'Installed!'
2525
}
2626
if (get-module PSDepend -ListAvailable) {
27-
Write-Host -NoNewLine "Importing PSDepend module"
27+
Write-Host "Importing PSDepend module ..." -NoNewLine
2828
Import-Module PSDepend -Force
29-
Write-Host '...Loaded!'
29+
Write-Host 'Loaded!'
3030

31-
Write-Host -NoNewLine 'Installing dependencies...'
31+
Write-Host 'Installing dependencies...' -NoNewLine
3232
Invoke-PSDepend -Path $(Join-Path $(Get-Location) 'Requirements.psd1') -Test
3333
Invoke-PSDepend -Path $(Join-Path $(Get-Location) 'Requirements.psd1') -Force
3434
Invoke-PSDepend -Path $(Join-Path $(Get-Location) 'Requirements.psd1') -Import -Force

0 commit comments

Comments
 (0)