Skip to content

Commit

Permalink
travis-doxygen.sh: upgrade to Doxygen 1.8.13
Browse files Browse the repository at this point in the history
 * Upgrade to the latest Doxygen version 1.8.13
 * Drop unused variable DOXYGEN_BIN
 * Reenable --single-branch (travis-ci/travis-ci#5225 is closed)
  • Loading branch information
pah committed Jul 10, 2017
1 parent 37ea16d commit 7161894
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions travis-doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@

set -e

DOXYGEN_VER=doxygen-1.8.7
DOXYGEN_VER=doxygen-1.8.13
DOXYGEN_TAR=${DOXYGEN_VER}.linux.bin.tar.gz
DOXYGEN_URL="http://ftp.stack.nl/pub/users/dimitri/${DOXYGEN_TAR}"
DOXYGEN_BIN="/usr/local/bin/doxygen"

: ${GITHUB_REPO:="miloyip/rapidjson"}
GITHUB_HOST="github.com"
Expand Down Expand Up @@ -66,7 +65,7 @@ gh_pages_prepare()
[ ! -d "html" ] || \
abort "Doxygen target directory already exists."
git --version
git clone -b gh-pages "${GITHUB_CLONE}" html
git clone --single-branch -b gh-pages "${GITHUB_CLONE}" html
cd html
# setup git config (with defaults)
git config user.name "${GIT_NAME-travis}"
Expand Down

0 comments on commit 7161894

Please sign in to comment.