From df28644e958e3eb8e36ce4a00dd5473609cd19a0 Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 12:03:43 +0000 Subject: [PATCH] remote: Remove unnecessary and incorrect single quote in `MasterProcess` (#44697) (cherry-pick to preview) (#44698) Cherry-pick of #44697 to preview ---- Closes https://github.com/zed-industries/zed/issues/43992 Release Notes: - Fixed remoting not working on some linux and mac systems Co-authored-by: Lukas Wirth --- 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 6260653d53c2040da5e70c2c6764f9790d7abb58..49b41f296865a6dcc612e8f65cf23edf57dc7ed1 100644 --- a/crates/remote/src/transport/ssh.rs +++ b/crates/remote/src/transport/ssh.rs @@ -115,7 +115,7 @@ impl MasterProcess { .args(additional_args) .args(args); - master_process.arg(format!("ControlPath='{}'", socket_path.display())); + master_process.arg(format!("ControlPath={}", socket_path.display())); let process = master_process.arg(&url).spawn()?;