fix missing newline in cmd/add (#905)

This commit is contained in:
umarcor 2019-07-15 17:44:15 +02:00 committed by Joshua Harshman
parent 9a31ddff0e
commit 2d7544ebde

View file

@ -64,7 +64,7 @@ Example: cobra add server -> resulting in a new cmd/server.go`,
er(err) er(err)
} }
fmt.Printf("%s created at %s", command.CmdName, command.AbsolutePath) fmt.Printf("%s created at %s\n", command.CmdName, command.AbsolutePath)
}, },
} }
) )