mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-25 18:55:28 -06:00
10 lines
131 B
Go
10 lines
131 B
Go
// +build !windows
|
|
|
|
package safeexec
|
|
|
|
import "os/exec"
|
|
|
|
func LookPath(file string) (string, error) {
|
|
return exec.LookPath(file)
|
|
}
|