Merge pull request #4790 from tstromberg/issue-url-chooser

Update github issues URL now that we have issue templates
pull/4781/head^2
Thomas Strömberg 2019-07-17 11:08:09 -07:00 committed by GitHub
commit 03fb063281
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ func WithProblem(msg string, p *problem.Problem) {
p.Display()
console.Err("\n")
console.ErrStyle(console.Sad, "If the above advice does not help, please let us know: ")
console.ErrStyle(console.URL, "https://github.com/kubernetes/minikube/issues/new")
console.ErrStyle(console.URL, "https://github.com/kubernetes/minikube/issues/new/choose")
os.Exit(Config)
}
@ -102,5 +102,5 @@ func displayError(msg string, err error) {
console.Fatal("%s: %v", msg, err)
console.Err("\n")
console.ErrStyle(console.Sad, "Sorry that minikube crashed. If this was unexpected, we would love to hear from you:")
console.ErrStyle(console.URL, "https://github.com/kubernetes/minikube/issues/new")
console.ErrStyle(console.URL, "https://github.com/kubernetes/minikube/issues/new/choose")
}