From 8d4237225a7911a496d1870ce79a3d5482baa62d Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 21 Jul 2025 19:35:51 +0200 Subject: [PATCH] Updated enter-host.ps1 --- scripts/enter-host.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/enter-host.ps1 b/scripts/enter-host.ps1 index 13d2a5ce..36754c05 100755 --- a/scripts/enter-host.ps1 +++ b/scripts/enter-host.ps1 @@ -8,7 +8,7 @@ .EXAMPLE PS> ./enter-host.ps1 tux ✅ tux is online (3ms latency to 192.168.1.179) - ⏳ Trying to connect as user 'markus' with OpenSSH_for_Windows_9.5p1, LibreSSL 3.8.2 + ⏳ Connecting as user 'markus'... using OpenSSH_for_Windows_9.5p1, LibreSSL 3.8.2 markus@tux's password: ... .LINK @@ -36,7 +36,7 @@ try { & "$PSScriptRoot/wake-up-host.ps1" } - Write-Host "⏳ Trying to connect as user '$remoteUser' with " -noNewline + Write-Host "⏳ Connecting as user '$remoteUser'... using " -noNewline & ssh -V if ($lastExitCode -ne 0) { throw "'ssh -V' failed with exit code $lastExitCode" }