From 92ff7fb526c6722fd0d3c6918d1c1f589c3e4719 Mon Sep 17 00:00:00 2001 From: umarcor <38422348+umarcor@users.noreply.github.com> Date: Sat, 13 Jul 2019 22:30:52 +0200 Subject: [PATCH] fix missing newline in cmd/add --- cobra/cmd/add.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra/cmd/add.go b/cobra/cmd/add.go index 2d240b8a..6645a755 100644 --- a/cobra/cmd/add.go +++ b/cobra/cmd/add.go @@ -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) }, } )