mirror of https://github.com/spf13/cobra.git
fix missing newline in cmd/add (#905)
This commit is contained in:
parent
9a31ddff0e
commit
2d7544ebde
|
@ -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)
|
||||
},
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue