Skip to content

Commit

Permalink
cli: add missing new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
etix committed Aug 1, 2015
1 parent 1c91f66 commit 2da2ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands.go
Expand Up @@ -234,12 +234,12 @@ func (c *cli) CmdAdd(args ...string) error {
}

if strings.Contains(cmd.Arg(0), " ") {
fmt.Fprintf(os.Stderr, "The identifier cannot contain a space")
fmt.Fprintf(os.Stderr, "The identifier cannot contain a space\n")
os.Exit(-1)
}

if *http == "" {
fmt.Fprintf(os.Stderr, "You *must* pass at least an HTTP URL")
fmt.Fprintf(os.Stderr, "You *must* pass at least an HTTP URL\n")
os.Exit(-1)
}

Expand Down

0 comments on commit 2da2ce4

Please sign in to comment.