diff options
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/MANPAGE-render.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/MANPAGE-render.bash b/Documentation/MANPAGE-render.bash index 2b7dd80..cc982aa 100755 --- a/Documentation/MANPAGE-render.bash +++ b/Documentation/MANPAGE-render.bash @@ -10,7 +10,7 @@ function render { echo "Rendering $IN to $OUT" echo ".\\\" This is a man page. View it using 'man ./$OUT'" > $OUT echo ".\\\"" >> $OUT - pandoc MANPAGE.md -s -t man >> $OUT + pandoc "$IN" -s -t man >> $OUT } render MANPAGE.md gocryptfs.1 |