Fix inverted logic for showing issue link

pull/6240/head
tstromberg 2020-01-08 13:32:34 -08:00
parent 444b36161b
commit f908468bec
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ func WithProblem(msg string, p *problem.Problem) {
out.ErrT(out.Empty, "")
out.FatalT(msg)
p.Display()
if !p.ShowIssueLink {
if p.ShowIssueLink {
out.ErrT(out.Empty, "")
out.ErrT(out.Sad, "If the above advice does not help, please let us know: ")
out.ErrT(out.URL, "https://github.com/kubernetes/minikube/issues/new/choose")