jesseduffield.lazygit/vendor/github.com/cli/safeexec/lookpath_1.18.go
Jesse Duffield 678a2a90cb Add cli/go-gh/v2 and cli/safeexec vendor dependencies
Required for authenticating with GitHub's API using the token
stored by the gh CLI.
2026-04-01 09:13:55 +02:00

11 lines
170 B
Go

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