Files
buildx/util/gitutil/path_windows.go
2024-04-24 17:58:17 -07:00

10 lines
116 B
Go

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