SandpointsGitHook/vendor/github.com/cli/safeexec/lookpath.go
2021-03-20 23:21:23 +01:00

9 lines
131 B
Go

// +build !windows
package safeexec
import "os/exec"
func LookPath(file string) (string, error) {
return exec.LookPath(file)
}