remote: Remove unnecessary and incorrect single quote in MasterProcess (#44697)

Closes https://github.com/zed-industries/zed/issues/43992

Release Notes:

- Fixed remoting not working on some linux and mac systems
This commit is contained in:
Lukas Wirth
2025-12-12 11:53:15 +00:00
committed by GitHub
parent 17db7b0e99
commit e03fa114a7
+1 -1
View File
@@ -116,7 +116,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()?;