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

Thorsten Ball created

Closes #22752

Release Notes:

- N/A

Change summary

crates/remote/src/ssh_session.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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.