We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc3f517 commit 97b176dCopy full SHA for 97b176d
internal/run/run.go
@@ -27,7 +27,7 @@ func SetPrepareCmd(fn func(*exec.Cmd) Runnable) func() {
27
PrepareCmd = func(cmd *exec.Cmd) Runnable {
28
// normalize git executable name for consistency in tests
29
if baseName := filepath.Base(cmd.Args[0]); baseName == "git" || baseName == "git.exe" {
30
- cmd.Args[0] = baseName
+ cmd.Args[0] = "git"
31
}
32
return fn(cmd)
33
0 commit comments