mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
10 lines
116 B
Go
10 lines
116 B
Go
package gitutil
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func gitPath(_ string) (string, error) {
|
|
return exec.LookPath("git.exe")
|
|
}
|