aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/osutil/run_cmd.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/internal/osutil/run_cmd.go')
-rw-r--r--client/go/internal/osutil/run_cmd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/internal/osutil/run_cmd.go b/client/go/internal/osutil/run_cmd.go
index 3847dcc912a..ab7bd1069c3 100644
--- a/client/go/internal/osutil/run_cmd.go
+++ b/client/go/internal/osutil/run_cmd.go
@@ -38,7 +38,7 @@ func analyzeError(err error) string {
msg := "died with signal: " + status.Signal().String()
switch status.Signal() {
case syscall.SIGILL:
- msg = msg + " (you probably have an older CPU than required)"
+ msg = msg + " (you probably have an older CPU than required, see https://docs.vespa.ai/en/cpu-support.html)"
}
return msg
}