aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app')
-rw-r--r--internal/app/start.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/start.go b/internal/app/start.go
index 719343fe..49a4678a 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))
}
}
}