1
0
Fork 0
mirror of https://github.com/spf13/cobra synced 2025-04-23 07:07:18 +00:00

fix missing newline in cmd/add ()

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)
}
fmt.Printf("%s created at %s", command.CmdName, command.AbsolutePath)
fmt.Printf("%s created at %s\n", command.CmdName, command.AbsolutePath)
},
}
)