mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 07:36:27 -04:00
11 lines
170 B
Go
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)
|
|
}
|