util: Add missing quotes in shell env capturing on windows (#41902)
Release Notes: - Fixed shell env capturing failing if zed is installed on a path with whitespace in it
This commit is contained in:
@@ -202,7 +202,7 @@ async fn capture_windows(
|
||||
.args([
|
||||
"-c",
|
||||
&format!(
|
||||
"cd '{}'; {}{} --printenv",
|
||||
"cd '{}'; {}'{}' --printenv",
|
||||
directory.display(),
|
||||
shell_kind
|
||||
.command_prefix()
|
||||
@@ -231,7 +231,7 @@ async fn capture_windows(
|
||||
.args([
|
||||
"/c",
|
||||
&format!(
|
||||
"cd '{}'; {} --printenv",
|
||||
"cd '{}'; '{}' --printenv",
|
||||
directory.display(),
|
||||
zed_path.display()
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user