This commit is contained in:
6543 2023-02-10 16:42:29 +01:00
parent de175da42d
commit 008ce4ab02
3 changed files with 14 additions and 9 deletions

View file

@ -98,9 +98,6 @@ func listCerts(ctx *cli.Context) error {
fmt.Printf("Domain\tValidTill\n\n")
for _, cert := range items {
if cert.Domain[0] == '.' {
cert.Domain = "*" + cert.Domain
}
fmt.Printf("%s\t%s\n",
cert.Domain,
time.Unix(cert.ValidTill, 0).Format(time.RFC3339))