aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-22 00:48:08 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-22 00:48:08 +0100
commita5026f3a956de740dbab840c839a6fa3ebee2dec (patch)
tree3028ae24558abbb35752c943208c86edc4b7d797 /scripts
parent6425186693e4c7d1ec54b5e4d1cab2008cb97f55 (diff)
downloadYAGE-a5026f3a956de740dbab840c839a6fa3ebee2dec.tar.gz
YAGE-a5026f3a956de740dbab840c839a6fa3ebee2dec.zip
Doxygen added to travis
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update_docs26
1 files changed, 14 insertions, 12 deletions
diff --git a/scripts/update_docs b/scripts/update_docs
index 6993184e..19e47145 100755
--- a/scripts/update_docs
+++ b/scripts/update_docs
@@ -2,16 +2,18 @@
if [[ "$TRAVIS_BRANCH" == "master" ]]; then
doxygen ./docs/Doxyfile
- cd html
- git init
- git config user.name "TravisBot"
- git config user.email ""
- git remote add upstream "https://$GH_TOKEN@github.com/ymherklotz/YAGE.git"
- git fetch upstream
- git reset upstream/gh-pages
- touch .
- git add -A .
- git commit -m "Rebuilding documentation"
- git push -q upstream HEAD:gh-pages
- cd ..
+ if [ -d "$TRAVIS_BUILD_DIR/html" ]; then
+ cd $TRAVIS_BUILD_DIR/html
+ git init
+ git config user.name "TravisBot"
+ git config user.email ""
+ git remote add upstream "https://$GH_TOKEN@github.com/ymherklotz/YAGE.git"
+ git fetch upstream
+ git reset upstream/gh-pages
+ touch .
+ git add -A .
+ git commit -m "Rebuilding documentation"
+ git push -q upstream HEAD:gh-pages
+ cd ..
+ fi
fi