From 4a74b865940c80c5adc0b4acd867b710869f9c9e Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Wed, 22 Oct 2025 20:44:18 +0200 Subject: [PATCH] Fix ssh::build_command --- crates/remote/src/transport/ssh.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/remote/src/transport/ssh.rs b/crates/remote/src/transport/ssh.rs index 2d3adba756a181fc9b54e1a8127b04a3833eb0a9..745391e17ee90b183e517a8ce4c4ab7006493758 100644 --- a/crates/remote/src/transport/ssh.rs +++ b/crates/remote/src/transport/ssh.rs @@ -1265,7 +1265,7 @@ fn build_command( for (k, v) in input_env.iter() { write!( exec, - "{}={}", + "{}={} ", k, shell_kind.try_quote(v).context("shell quoting")? )?;