Skip to content

Commit 5fe33f0

Browse files
author
devizer
committed
Module: Brush up tests, 5th
1 parent 994d0af commit 5fe33f0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Install-SqlServer-Version-Management.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Param(
44
)
55

66
$ModuleName = 'SqlServer-Version-Management';
7-
$ModuleVersion = '2.1.166';
7+
$ModuleVersion = '2.1.167';
88
$ModuleFiles = @(
99
@{
1010
FileName = 'SqlServer-Version-Management\SqlServer-Version-Management.psd1';
@@ -15,7 +15,7 @@ $ModuleFiles = @(
1515
" ModuleToProcess = @('SqlServer-Version-Management.psm1')",
1616
"",
1717
" # Version below is automatically incremented on build",
18-
" ModuleVersion = `"2.1.166`"",
18+
" ModuleVersion = `"2.1.167`"",
1919
"",
2020
" GUID = 'dd03b53d-575a-4056-ae08-e6dfea3384ea'",
2121
"",
@@ -1968,7 +1968,7 @@ $ModuleFiles = @(
19681968
" }",
19691969
" `$setupTitle = { `"`$_`" }",
19701970
" `$setupAction = {",
1971-
" Write-Host `"EDITION: `$_`"; ",
1971+
" Say `"EDITION: `$_`"; ",
19721972
" `$vsid = `$_",
19731973
" Setup-VisualStudio `$vsid `$kind",
19741974
" `$okStarted = Wait-For-VisualStudio-Setup-Is-Running -Timeout (5*60*1000)",

SqlServer-Version-Management.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1869,7 +1869,7 @@ function Test-Setup-VisualStudio([string] $kind = "Basic Components" <# or Mini
18691869
}
18701870
$setupTitle = { "$_" }
18711871
$setupAction = {
1872-
Write-Host "EDITION: $_";
1872+
Say "EDITION: $_";
18731873
$vsid = $_
18741874
Setup-VisualStudio $vsid $kind
18751875
$okStarted = Wait-For-VisualStudio-Setup-Is-Running -Timeout (5*60*1000)

0 commit comments

Comments
 (0)