Files
buildx/util/gitutil/gitpath_windows.go
2022-12-15 21:16:37 +01:00

10 lines
117 B
Go

package gitutil
import (
"os/exec"
)
func gitPath(wd string) (string, error) {
return exec.LookPath("git.exe")
}