Skip to content

Commit

Permalink
add some spacing to user message
Browse files Browse the repository at this point in the history
  • Loading branch information
ianic committed Oct 7, 2021
1 parent c775463 commit 4d2b094
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions cli/cmd/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ and what account will be managed by command.
if err := stp.Create(); err != nil {
return log.WithUserMessage(err, "Install failed!")
}
ui.Info(`==> Next steps:
- Run mantil help to get started
- Run mantil new to start a new project
- Further documentation:
https://docs.mantil.io`)
ui.Info("==> Next steps:")
ui.Info("\t- Run mantil help to get started")
ui.Info("\t- Run mantil new to start a new project")
ui.Info("\t- Further documentation:")
ui.Info("\t https://docs.mantil.io")
ui.Info("") // new line
return nil
},
}
Expand Down

0 comments on commit 4d2b094

Please sign in to comment.