Skip to content

Commit a999b70

Browse files
authored
cmd: Add missing \n to HelpTemplate (caddyserver#5151)
1 parent 1cd5949 commit a999b70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/cobra.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const fullDocsFooter = `Full documentation is available at:
101101
https://caddyserver.com/docs/command-line`
102102

103103
func init() {
104-
rootCmd.SetHelpTemplate(rootCmd.HelpTemplate() + "\n" + fullDocsFooter)
104+
rootCmd.SetHelpTemplate(rootCmd.HelpTemplate() + "\n" + fullDocsFooter + "\n")
105105
}
106106

107107
func caddyCmdToCoral(caddyCmd Command) *cobra.Command {

0 commit comments

Comments
 (0)