Fix ssh::build_command

Jakub Konka created

Change summary

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

Detailed changes

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")?
         )?;