fix: remove unnecessary newlines from the end of cli output (#9068)

`Infof` already adds a newline, so we don't need to as well!
This commit is contained in:
Kyle Carberry
2023-08-13 11:48:11 -05:00
committed by GitHub
parent 9a13814b46
commit 0d01d022f7
6 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ func (r *RootCmd) newCreateAdminUserCommand() *clibase.Cmd {
defer cancel()
if newUserDBURL == "" {
cliui.Infof(inv.Stdout, "Using built-in PostgreSQL (%s)\n", cfg.PostgresPath())
cliui.Infof(inv.Stdout, "Using built-in PostgreSQL (%s)", cfg.PostgresPath())
url, closePg, err := startBuiltinPostgres(ctx, cfg, logger)
if err != nil {
return err