From 204997112044a0920f3b379321c31274f5c73cb7 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 22 Dec 2017 22:22:34 +0000 Subject: Improving travis configuration --- scripts/update_docs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 scripts/update_docs (limited to 'scripts/update_docs') 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 -- cgit