Skip to content

Commit 39a28ea

Browse files
committed
Add blank line after banner message in console startup
1 parent e8747f1 commit 39a28ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PowerShell.MCP.Proxy/Services/PowerShellProcessManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public static int LaunchPwsh(string? startupMessage = null)
246246
{
247247
// Escape single quotes for PowerShell
248248
var escaped = startupMessage.Replace("'", "''");
249-
command = $"Write-Host '{escaped}' -ForegroundColor Green; Import-Module PowerShell.MCP,PSReadLine";
249+
command = $"Write-Host '{escaped}' -ForegroundColor Green; Write-Host ''; Import-Module PowerShell.MCP,PSReadLine";
250250
}
251251
else
252252
{

0 commit comments

Comments
 (0)