10 lines
117 B
Go
10 lines
117 B
Go
![]()
2 years ago
|
package gitutil
|
||
|
|
||
|
import (
|
||
|
"os/exec"
|
||
|
)
|
||
|
|
||
|
func gitPath(wd string) (string, error) {
|
||
|
return exec.LookPath("git.exe")
|
||
|
}
|