Skip to content

Commit

Permalink
chore: add new line to the welcome message
Browse files Browse the repository at this point in the history
  • Loading branch information
steveiliop56 committed Sep 22, 2024
1 parent d88d5bf commit 1b19dbd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
2 changes: 2 additions & 0 deletions cmd/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ var updateCmd = &cobra.Command{
// Succeed
spinner.Stop()

fmt.Println()

internalIp, _ := env.GetEnvValue("INTERNAL_IP")
nginxPort, _ := env.GetEnvValue("NGINX_PORT")

Expand Down
2 changes: 2 additions & 0 deletions internal/commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 1b19dbd

Please sign in to comment.