From a669ebb53e5798ff9c92433a7dada86a0b750404 Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Fri, 23 Apr 2021 16:07:50 -0700 Subject: [PATCH] added back emojis --- pkg/minikube/out/out.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkg/minikube/out/out.go b/pkg/minikube/out/out.go index 8a535be9a9c9..45a6eb6f68b2 100644 --- a/pkg/minikube/out/out.go +++ b/pkg/minikube/out/out.go @@ -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) }