Last active
May 16, 2018 05:52
-
-
Save zeddee/5f8fe0d45d86aadb38931738d5c15211 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$1" == "" ]; then | |
echo 'Please specify one build target.\n e.g. ./adoc_build.sh index.adoc' | |
exit 1 | |
fi | |
echo "Building $1" | |
asciidoctor $1 &&\ | |
asciidoctor-pdf $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment