Skip to content

Commit

Permalink
added back emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
spowelljr committed Apr 23, 2021
1 parent 68171b4 commit a669ebb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pkg/minikube/out/out.go
Original file line number Diff line number Diff line change
Expand Up @@ -397,12 +397,10 @@ func displayGitHubIssueMessage() {
klog.Warningf("failed to diplay GitHub issue message: %v", err)
}

msg := `If the above advice does not help, please let us know:
https://github.com/kubernetes/minikube/issues/new/choose
Please attach the following file to the GitHub issue:
- `
msg += logPath
msg := Sprintf(style.Sad, "If the above advice does not help, please let us know:")
msg += Sprintf(style.URL, "https://github.com/kubernetes/minikube/issues/new/choose\n")
msg += Sprintf(style.Empty, "Please attach the following file to the GitHub issue:")
msg += Sprintf(style.Empty, "- {{.logPath}}", V{"logPath": logPath})

Boxed(msg)
}
Expand Down

0 comments on commit a669ebb

Please sign in to comment.