mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-12 04:23:03 +02: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)
|
|
}
|