diff --git a/cmd/root.go b/cmd/root.go index dcc9685..b1f4d49 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -38,7 +38,7 @@ func Execute() { func init() { - fmt.Println("Welcome to Runtipi CLI in Go ✨") + fmt.Print("Welcome to Runtipi CLI in Go ✨\n\n") rootCmd.AddCommand(app.AppCmd()) rootCmd.AddCommand(system.SystemCmd()) } \ No newline at end of file diff --git a/cmd/update.go b/cmd/update.go index a142428..62f6d39 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -176,6 +176,8 @@ var updateCmd = &cobra.Command{ // Succeed spinner.Stop() + fmt.Println() + internalIp, _ := env.GetEnvValue("INTERNAL_IP") nginxPort, _ := env.GetEnvValue("NGINX_PORT") diff --git a/internal/commands/commands.go b/internal/commands/commands.go index a0cf2f8..7f514db 100644 --- a/internal/commands/commands.go +++ b/internal/commands/commands.go @@ -130,6 +130,8 @@ func Start(envFile string, noPermissions bool) { // Finish spinner.Stop() + fmt.Println() + internalIp, _ := env.GetEnvValue("INTERNAL_IP") nginxPort, _ := env.GetEnvValue("NGINX_PORT")