...

Source file src/github.com/cli/safeexec/lookpath.go

Documentation: github.com/cli/safeexec

     1  // +build !windows
     2  
     3  package safeexec
     4  
     5  import "os/exec"
     6  
     7  func LookPath(file string) (string, error) {
     8  	return exec.LookPath(file)
     9  }
    10  

View as plain text