fix: avoid word splitting by space for windows shell commands (#7781) (#7810)

Signed-off-by: Kirill Frolov <k.frolov@samsung.com>
This commit is contained in:
2:5030/1559
2026-03-11 20:17:01 +03:00
committed by GitHub
parent e9528d5539
commit c30b606505
@@ -266,7 +266,7 @@ fn build_shell_command(command_line: &str) -> tokio::process::Command {
#[cfg(windows)]
let mut command = {
let mut command = tokio::process::Command::new("cmd");
command.arg("/C").arg(command_line);
command.arg("/C").raw_arg(command_line);
command
};