Commit 5050f187 authored by Philipp A. Hartmann's avatar Philipp A. Hartmann

travis-doxygen.sh: add GH_TOKEN sanity check

parent 33e96f86
...@@ -81,8 +81,11 @@ gh_pages_push() { ...@@ -81,8 +81,11 @@ gh_pages_push() {
# check for secure variables # check for secure variables
[ "${TRAVIS_SECURE_ENV_VARS}" = "true" ] || \ [ "${TRAVIS_SECURE_ENV_VARS}" = "true" ] || \
skip "Secure variables not available, not updating GitHub pages." skip "Secure variables not available, not updating GitHub pages."
# check for GitHub access token
[ "${GH_TOKEN+set}" = set ] || \ [ "${GH_TOKEN+set}" = set ] || \
skip "GitHub access token not available, not updating GitHub pages." skip "GitHub access token not available, not updating GitHub pages."
[ "${#GH_TOKEN}" -eq 40 ] || \
abort "GitHub token invalid: found ${#GH_TOKEN} characters, expected 40."
cd "${TRAVIS_BUILD_DIR}/doc/html"; cd "${TRAVIS_BUILD_DIR}/doc/html";
# setup credentials (hide in "set -x" mode) # setup credentials (hide in "set -x" mode)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment