File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -397,12 +397,10 @@ func displayGitHubIssueMessage() {
397
397
klog .Warningf ("failed to diplay GitHub issue message: %v" , err )
398
398
}
399
399
400
- msg := `If the above advice does not help, please let us know:
401
- https://github.com/kubernetes/minikube/issues/new/choose
402
-
403
- Please attach the following file to the GitHub issue:
404
- - `
405
- msg += logPath
400
+ msg := Sprintf (style .Sad , "If the above advice does not help, please let us know:" )
401
+ msg += Sprintf (style .URL , "https://github.com/kubernetes/minikube/issues/new/choose\n " )
402
+ msg += Sprintf (style .Empty , "Please attach the following file to the GitHub issue:" )
403
+ msg += Sprintf (style .Empty , "- {{.logPath}}" , V {"logPath" : logPath })
406
404
407
405
Boxed (msg )
408
406
}
You can’t perform that action at this time.
0 commit comments