From c8b276a1fbf2669c1d77620c9d6aff0331ebed75 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 22 Dec 2017 22:12:27 +0000 Subject: Including doxygen in cmake --- scripts/update_docs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scripts/update_docs') 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 -- cgit