fixed docs clean order

This commit is contained in:
Lectem 2015-03-21 15:47:06 +01:00
parent 30e407a013
commit 51deccd4d0

View File

@ -2,9 +2,12 @@
if [ "$TRAVIS_REPO_SLUG" = "Lectem/ctrulib" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then if [ "$TRAVIS_REPO_SLUG" = "Lectem/ctrulib" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then
sudo apt-get install -qq doxygen sudo apt-get install -qq doxygen
git clone --branch=gh-pages --single-branch --depth 1 https://${GH_TOKEN}@github.com/Lectem/ctrulib docs git clone --branch=gh-pages --single-branch --depth 1 https://${GH_TOKEN}@github.com/Lectem/ctrulib docs
doxygen libctru/Doxyfile
cd docs cd docs
git rm -rf ./* git rm -rf ./*
cd ..
doxygen libctru/Doxyfile
cd docs
mv ./html/* .
git add --all git add --all
git commit -m"Doc generated from Travis build #$TRAVIS_BUILD_NUMBER" git commit -m"Doc generated from Travis build #$TRAVIS_BUILD_NUMBER"
git push -f origin gh-pages git push -f origin gh-pages