ssh remoting: Improve error message if netcat is missing (#22767)

Closes #22752

Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2025-01-07 14:16:52 +01:00 committed by GitHub
parent bcc6d95529
commit fb272c0edc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1434,7 +1434,7 @@ impl SshRemoteConnection {
anyhow::ensure!(
which::which("nc").is_ok(),
"Cannot find nc, which is required to connect over ssh."
"Cannot find `nc` command (netcat), which is required to connect over SSH."
);
// Create an askpass script that communicates back to this process.