diff --git a/internal/app/start.go b/internal/app/start.go index 719343f..49a4678 100644 --- a/internal/app/start.go +++ b/internal/app/start.go @@ -35,8 +35,8 @@ func (a *app) Start() error { if s, err := exec.LookPath(n); err == nil { shimExec[i] = s } else { - return fmsg.WrapErrorSuffix(err, - fmt.Sprintf("cannot find %q:", n)) + return fmsg.WrapError(err, + fmt.Sprintf("executable file %q not found in $PATH", n)) } } }