We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 018c038 commit f4115c3Copy full SHA for f4115c3
crates/gitbutler-repo/src/repository_ext.rs
@@ -333,8 +333,9 @@ impl RepositoryExt for git2::Repository {
333
let args = format!("{} {}", signing_key, buffer_file_to_sign_path_str);
334
cmd_string += &args;
335
};
336
- let mut signing_cmd: std::process::Command =
337
- gix::command::prepare(cmd_string).with_shell().into();
+ let mut signing_cmd: std::process::Command = gix::command::prepare(cmd_string)
+ .with_shell_disallow_manual_argument_splitting()
338
+ .into();
339
let output = signing_cmd
340
.stderr(Stdio::piped())
341
.stdout(Stdio::piped())
0 commit comments