summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2022-07-11 21:18:56 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2022-07-11 21:18:56 +0200
commit8611ee297a9f2abfe6cb42d4a92702f16718a225 (patch)
tree8834b25d0f28d57b8314a9bbef366bfffd846d4a
parente5424a87fab52a9990ec79b145cd8bf2a4fe04c0 (diff)
sq: Set manpage title to Sequoia Manual.
-rw-r--r--sq/build.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/sq/build.rs b/sq/build.rs
index b3bba5db..923396fc 100644
--- a/sq/build.rs
+++ b/sq/build.rs
@@ -120,7 +120,9 @@ fn dump_manpage(cmd: &clap::Command, outdir: &OsStr, prefix: Option<&str>) -> Re
let man = clap_mangen::Man::new(cmd.clone().name(&command_name))
// Add build date in the form "Month Year" to the bottom of the manpage
- .date(chrono::Utc::today().format("%B %Y").to_string());
+ .date(chrono::Utc::today().format("%B %Y").to_string())
+ // The manual's title, akin to git's "Git Manual"
+ .manual("Sequoia Manual");
let mut buffer: Vec<u8> = Default::default();
man.render(&mut buffer)?;