From 1bb0ef8960c71ef505a351702bec54c01ba15e22 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 12 Oct 2017 14:57:26 +0100 Subject: Fixing spritesheet and fixed #12 --- scripts/update_docs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'scripts/update_docs') diff --git a/scripts/update_docs b/scripts/update_docs index 19e47145..cf117f73 100755 --- a/scripts/update_docs +++ b/scripts/update_docs @@ -3,17 +3,15 @@ if [[ "$TRAVIS_BRANCH" == "master" ]]; then doxygen ./docs/Doxyfile if [ -d "$TRAVIS_BUILD_DIR/html" ]; then - cd $TRAVIS_BUILD_DIR/html - git init + 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 "" - git remote add upstream "https://$GH_TOKEN@github.com/ymherklotz/YAGE.git" - git fetch upstream - git reset upstream/gh-pages - touch . + rm -rf * + cp -r ../html/* . git add -A . git commit -m "Rebuilding documentation" - git push -q upstream HEAD:gh-pages + git push -q origin gh-pages cd .. fi fi -- cgit