go-serviceman/installer/install_notwindows.go

18 lines
268 B
Go
Raw Normal View History

2019-07-01 08:44:48 +00:00
// +build !windows
package installer
import (
"os/exec"
"strings"
)
func whereIs(exe string) (string, error) {
cmd := exec.Command("command", "-v", exe)
out, err := cmd.Output()
if nil != err {
return "", err
}
return strings.TrimSpace(string(out)), nil
}