aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update_docs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update_docs')
-rwxr-xr-xscripts/update_docs5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/update_docs b/scripts/update_docs
index cf117f73..be1eaf1d 100755
--- a/scripts/update_docs
+++ b/scripts/update_docs
@@ -1,14 +1,13 @@
#!/usr/bin/env bash
if [[ "$TRAVIS_BRANCH" == "master" ]]; then
- doxygen ./docs/Doxyfile
- if [ -d "$TRAVIS_BUILD_DIR/html" ]; then
+ if [ -d "$TRAVIS_BUILD_DIR/build/doc_doxygen/html" ]; then
git clone -b gh-pages "https://$GH_TOKEN@github.com/ymherklotz/YAGE.git" YAGE_gh-pages
cd YAGE_gh-pages
git config user.name "TravisBot"
git config user.email ""
rm -rf *
- cp -r ../html/* .
+ cp -r ../build/doc_doxygen/html/* .
git add -A .
git commit -m "Rebuilding documentation"
git push -q origin gh-pages