Skip to content

Commit

Permalink
fix missing newline in cmd/add (#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor authored and jharshman committed Jul 15, 2019
1 parent 9a31ddf commit 2d7544e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cobra/cmd/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Example: cobra add server -> resulting in a new cmd/server.go`,
er(err)
}

fmt.Printf("%s created at %s", command.CmdName, command.AbsolutePath)
fmt.Printf("%s created at %s\n", command.CmdName, command.AbsolutePath)
},
}
)
Expand Down

0 comments on commit 2d7544e

Please sign in to comment.