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 1257fbd commit cacc8afCopy full SHA for cacc8af
gix-credentials/src/program/mod.rs
@@ -71,7 +71,7 @@ impl Program {
71
let git_program = gix_path::env::exe_invocation();
72
let mut cmd = match &self.kind {
73
Kind::Builtin => {
74
- let mut cmd = Command::new(git_program);
+ let mut cmd = Command::from(gix_command::prepare(git_program));
75
cmd.arg("credential").arg(action.as_arg(false));
76
cmd
77
}
0 commit comments