remove check for unknown maintainer

pull/15081/head
klaases 2022-10-06 16:25:50 -07:00
parent 43d0753d78
commit f6d3bf0515
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ You can view the list of minikube maintainers at: https://github.com/kubernetes/
if addonBundle.VerifiedMaintainer != "" {
out.Styled(style.Tip, `{{.addon}} is maintained by {{.maintainer}} for any concerns contact {{.verifiedMaintainer}} on GitHub.`,
out.V{"addon": addon, "maintainer": maintainer, "verifiedMaintainer": addonBundle.VerifiedMaintainer})
} else if addonBundle.Maintainer == "3rd party (unknown)" {
} else {
out.Styled(style.Warning, `{{.addon}} does not currently have an associated maintainer.`,
out.V{"addon": addon})
}