Skip to content

Commit

Permalink
fix: prevent terminal Windows to popup on Windows when run from a GUI…
Browse files Browse the repository at this point in the history
… application.
  • Loading branch information
Byron committed Aug 10, 2024
1 parent 1257fbd commit cacc8af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gix-credentials/src/program/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl Program {
let git_program = gix_path::env::exe_invocation();
let mut cmd = match &self.kind {
Kind::Builtin => {
let mut cmd = Command::new(git_program);
let mut cmd = Command::from(gix_command::prepare(git_program));
cmd.arg("credential").arg(action.as_arg(false));
cmd
}
Expand Down

0 comments on commit cacc8af

Please sign in to comment.