Reordering fix: move now works as depends on creation of html directory from previous step. (#3108)

This commit is contained in:
josecoll 2018-05-10 09:48:19 +01:00 committed by GitHub
parent 8419b24d80
commit 0dae108088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,12 @@ else
fi fi
# TODO: The PDF rendering is pretty ugly and can be improved a lot. # TODO: The PDF rendering is pretty ugly and can be improved a lot.
echo "Generating PDF document ..."
make pdf make pdf
mv build/pdf/corda-developer-site.pdf build/html/_static/corda-developer-site.pdf
echo "Generating HTML pages ..."
make html make html
echo "Moving PDF file into place ..."
mv $PWD/build/pdf/corda-developer-site.pdf $PWD/build/html/_static/corda-developer-site.pdf