Skip to content

Commit

Permalink
fixed an error message in the profiles add command
Browse files Browse the repository at this point in the history
  • Loading branch information
danielamkaer committed May 11, 2020
1 parent 1639210 commit 2dab13a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/profiles_add.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func collectProfileInfo(cmd *cobra.Command) (*login, error) {

if status.IsDown() {
cmd.Println(prompt.Colorize("[[red]Failed[reset]]"))
cmd.Println(fmt.Errorf("The server reported that is is malfunctioning, status: %s", status.Status))
cmd.Println(fmt.Errorf("The server reported that it is malfunctioning, status: %s", status.Status))
os.Exit(1)
} else {
cmd.Println(prompt.Colorize("[[green]Ok[reset]]"))
Expand Down

0 comments on commit 2dab13a

Please sign in to comment.