From 03ad67775edc343920c204cc1c378c46f4a296ff Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Tue, 25 Jul 2023 07:12:13 +0200 Subject: [PATCH] fix: upper ZITADEL banner (#6246) Co-authored-by: Livio Spring (cherry picked from commit 57d6113e2aa8ab00e944bdf404e8fafcc0985c4a) --- cmd/start/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/start/start.go b/cmd/start/start.go index b3d24cd2f1..80f9dc5308 100644 --- a/cmd/start/start.go +++ b/cmd/start/start.go @@ -461,7 +461,7 @@ func shutdownServer(ctx context.Context, server *http.Server) error { } func showBasicInformation(startConfig *Config) { - fmt.Println(color.MagentaString(figure.NewFigure("Zitadel", "", true).String())) + fmt.Println(color.MagentaString(figure.NewFigure("ZITADEL", "", true).String())) http := "http" if startConfig.TLS.Enabled || startConfig.ExternalSecure { http = "https"