From 2d7544ebdeb5f926805c57af8dccc6c359de28d4 Mon Sep 17 00:00:00 2001
From: umarcor <38422348+umarcor@users.noreply.github.com>
Date: Mon, 15 Jul 2019 17:44:15 +0200
Subject: [PATCH] fix missing newline in cmd/add (#905)

---
 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)
 		},
 	}
 )