Skip to content

Commit f1559ad

Browse files
committed
Remove trailing spaces
1 parent ddb37ea commit f1559ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

repeater.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ Function RelayMessage($from, $to, $buf, $arrow) {
2424
}
2525

2626
Function MainLoop {
27-
Try {
27+
Try {
2828
$buf = New-Object byte[] 8192
2929
$ssh_client_in = [console]::OpenStandardInput()
3030
$ssh_client_out = [console]::OpenStandardOutput()
31-
31+
3232
$ver = $PSVersionTable["PSVersion"]
3333
Log "ready: PSVersion $ver"
3434

3535
$buf[0] = 0xff
3636
$ssh_client_out.Write($buf, 0, 1)
37-
37+
3838
while ($true) {
3939
Try {
4040
$null = $ssh_client_in.Read((New-Object byte[] 1), 0, 0)
@@ -50,7 +50,7 @@ Function MainLoop {
5050
Log "[W] named pipe: disconnected"
5151
}
5252
}
53-
}
53+
}
5454
}
5555
Finally {
5656
$host.ui.WriteErrorLine("wsl2-ssh-agent.ps1: terminated")

0 commit comments

Comments
 (0)