Skip to content

Commit

Permalink
Added Gimli-Based docs/*.md -> PDF Generation
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsar256 committed Sep 26, 2014
1 parent 9ca1775 commit efdadcf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions build_docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash


if which gimli >/dev/null; then
find docs -name "*.md" -exec cat {} > documentation.md \;
gimli -f documentation.md
mv documentation.pdf docs
rm documentation.md
else
echo -e "\nFAILED"
echo "Install Gimli to build the PDF documentation"
echo -e "https://github.com/walle/gimli\n"
exit 1
fi




0 comments on commit efdadcf

Please sign in to comment.