Skip to content

Commit a69011f

Browse files
committed
Fix PowerShell#777: Change 'Starting PowerShell' message when Integrated Console starts
1 parent eb8b2d3 commit a69011f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/Start-EditorServices.ps1

+3-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,9 @@ try {
216216
$languageServicePort = Get-AvailablePort
217217
$debugServicePort = Get-AvailablePort
218218

219-
Write-Host "Starting PowerShell...`n" -ForegroundColor Blue
219+
if ($EnableConsoleRepl) {
220+
Write-Host "PowerShell Integrated Console`n"
221+
}
220222

221223
# Create the Editor Services host
222224
$editorServicesHost =

0 commit comments

Comments
 (0)