aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJakob Unterwurzacher2019-03-02 15:40:05 +0100
committerJakob Unterwurzacher2019-03-02 15:43:58 +0100
commit61940a9c0666eba8be21de4f1cd182912f74f929 (patch)
tree6a3d21966d9666ae80cf3de24f1b218e7a1e6eaf /Documentation
parent60cae5063fe7bdfde6a24ea840c5076a368ad3ea (diff)
Include rendered man page in source tarballs
This gives users who build from the source tarball, but do not want to install pandoc, access to the man pages. Apperently the gocryptfs homebrew package ships without the man pages at the moment to avoid pandoc. Requested at https://github.com/rfjakob/gocryptfs/issues/355
Diffstat (limited to 'Documentation')
-rwxr-xr-xDocumentation/MANPAGE-render.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/MANPAGE-render.bash b/Documentation/MANPAGE-render.bash
index cc982aa..996290a 100755
--- a/Documentation/MANPAGE-render.bash
+++ b/Documentation/MANPAGE-render.bash
@@ -8,7 +8,7 @@ function render {
IN=$1
OUT=$2
echo "Rendering $IN to $OUT"
- echo ".\\\" This is a man page. View it using 'man ./$OUT'" > $OUT
+ echo ".\\\" This man page was generated from $IN. View it using 'man ./$OUT'" > $OUT
echo ".\\\"" >> $OUT
pandoc "$IN" -s -t man >> $OUT
}