From fb272c0edc7b91185c7b002c3aa12589c3368d24 Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Tue, 7 Jan 2025 14:16:52 +0100 Subject: [PATCH] ssh remoting: Improve error message if netcat is missing (#22767) Closes #22752 Release Notes: - N/A --- crates/remote/src/ssh_session.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/remote/src/ssh_session.rs b/crates/remote/src/ssh_session.rs index a72f19e1e4..bd9cc47058 100644 --- a/crates/remote/src/ssh_session.rs +++ b/crates/remote/src/ssh_session.rs @@ -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.