summaryrefslogtreecommitdiff
path: root/usage.go
diff options
context:
space:
mode:
authorAlex Flint <[email protected]>2022-09-27 12:48:05 -0700
committerGitHub <[email protected]>2022-09-27 12:48:05 -0700
commit74af96c6ccf404613c251bca4814d32c69047c5f (patch)
treeab25f483d8ecd88e24e2e2d9f0c8726243816f3f /usage.go
parentebd7a68a06bef58b87c1fd21c2e7db383adbcbf3 (diff)
parentc8b9567d1ba7f0ab20f93b60e5a8344c2c23c110 (diff)
Merge pull request #191 from SebastiaanPasterkamp/add-epilog-to-help
Feat: Add epilogue after help text
Diffstat (limited to 'usage.go')
-rw-r--r--usage.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/usage.go b/usage.go
index e936811..7ba06cc 100644
--- a/usage.go
+++ b/usage.go
@@ -290,6 +290,10 @@ func (p *Parser) writeHelpForSubcommand(w io.Writer, cmd *command) {
printTwoCols(w, subcmd.name, subcmd.help, "", "")
}
}
+
+ if p.epilogue != "" {
+ fmt.Fprintln(w, "\n"+p.epilogue)
+ }
}
func (p *Parser) printOption(w io.Writer, spec *spec) {