remote: Remove unnecessary and incorrect single quote in `MasterProcess` (#44697) (cherry-pick to preview) (#44698)

zed-zippy[bot] and Lukas Wirth created

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 <lukas@zed.dev>

Change summary

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

Detailed changes

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