aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update_docs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-12-22 22:22:34 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-12-22 22:22:34 +0000
commit204997112044a0920f3b379321c31274f5c73cb7 (patch)
treeb96735ca7a73e4be1cef8f430587874386612389 /scripts/update_docs
parentc8b276a1fbf2669c1d77620c9d6aff0331ebed75 (diff)
downloadYAGE-204997112044a0920f3b379321c31274f5c73cb7.tar.gz
YAGE-204997112044a0920f3b379321c31274f5c73cb7.zip
Improving travis configuration
Diffstat (limited to 'scripts/update_docs')
-rwxr-xr-xscripts/update_docs16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/update_docs b/scripts/update_docs
deleted file mode 100755
index be1eaf1d..00000000
--- a/scripts/update_docs
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-
-if [[ "$TRAVIS_BRANCH" == "master" ]]; 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 ../build/doc_doxygen/html/* .
- git add -A .
- git commit -m "Rebuilding documentation"
- git push -q origin gh-pages
- cd ..
- fi
-fi