aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtaler-build/update_docs.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/taler-build/update_docs.sh b/taler-build/update_docs.sh
index ff1c69a..87b7573 100755
--- a/taler-build/update_docs.sh
+++ b/taler-build/update_docs.sh
@@ -17,6 +17,9 @@ fetch
./configure --enable-only-doc
make
doxygen
+cp doc/manual.pdf $HOME/build/merchant-backend/manual/pdf/
+cp doc/manual.html $HOME/build/merchant-backend/manual/html/
+cp -r doc/doxygen-doc/html/* $HOME/build/merchant-backend/doxygen/
# 2 exchange
cd $HOME/exchange
@@ -26,16 +29,25 @@ fetch
make pdf
make html
doxygen
+cp doc/taler-exchange.pdf $HOME/build/exchange/manual/pdf/
+cp doc/taler-exchange.html/* $HOME/build/exchange/manual/html/
+cp -r doc/doxygen-doc/html/* $HOME/build/exchange/doxygen/
# 3 frontends tutorials
cd $HOME/merchant-frontend-examples
fetch
make
+cp php/doc/tutorial.pdf $HOME/build/merchant-frontend/php/pdf/
+cp php/doc/tutorial.html $HOME/build/merchant-frontend/php/html/
+cp python/doc/tutorial.html $HOME/build/merchant-frontend/python/html/
+cp python/doc/tutorial.html $HOME/build/merchant-frontend/python/html/
# 4 api
cd $HOME/api
fetch
make html
+cp -r api/_build/html/* $HOME/build/api/html/
+
# 5 onboarding
cd $HOME/deployment
@@ -43,3 +55,5 @@ fetch
cd doc/
texi2pdf onboarding.texi
texi2html onboarding.texi
+cp doc/onboarding.html $HOME/build/onboarding/html/
+cp doc/onboarding.pdf $HOME/build/onboarding/pdf/