Skip to content

Commit 9946611

Browse files
authored
Merge pull request #2085 from GitoxideLabs/improvements
fix: textconf programs are now always run through a shell.
2 parents f52336f + ec26d32 commit 9946611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gix-diff/src/blob/pipeline.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ impl Driver {
549549
let cmd = gix_command::prepare(gix_path::from_bstr(command).into_owned())
550550
// TODO: Add support for an actual Context, validate it *can* match Git
551551
.with_context(Default::default())
552-
.command_may_be_shell_script()
552+
.with_shell()
553553
.stdin(Stdio::null())
554554
.stdout(Stdio::piped())
555555
.stderr(Stdio::piped())

0 commit comments

Comments
 (0)