File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ install:
68
68
- pip install --upgrade pygooglechart
69
69
- pip install --upgrade graphviz
70
70
- (pip install --upgrade FoBiS.py==2.2.8 && FoBiS.py --version)
71
- - (pip install --upgrade ford && ford --version)
71
+ - (pip install --upgrade ford==5.0.6 && ford --version)
72
+ - (pip install --upgrade markdown==2.6.9)
72
73
- (pip install --upgrade git+https://github.com/dmeranda/demjson.git && jsonlint --version)
73
74
74
75
before_script :
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- # Script to deploy documentation after successfull build of master branch or tag
2
+ # Script to deploy documentation after successful build of master branch or tag
3
3
# If running under travis-ci this will automatically deploy updates to the master branch's
4
4
# documentation on build events for the master branch, and will add/update documentation for
5
5
# any new/updated tags that are pushed.
@@ -20,7 +20,7 @@ if [ "$TRAVIS" ]; then #running under travis
20
20
git commit -m " Development documentation updated by travis job $TRAVIS_JOB_NUMBER for commits $TRAVIS_COMMIT_RANGE " || true
21
21
git push -fq origin gh-pages > /dev/null 2>&1 || true
22
22
fi
23
- # If publishing a new/updated tag, deploy it's documentation
23
+ # If publishing a new/updated tag, deploy its documentation
24
24
if [ " $TRAVIS_TAG " ] && [ " $( ls -A " $TRAVIS_BUILD_DIR /doc" ) " ] ; then # not empty
25
25
cd " $TRAVIS_BUILD_DIR " || exit 1
26
26
git clone -q --branch=gh-pages " https://${GH_TOKEN} @github.com/$TRAVIS_REPO_SLUG " gh-pages > /dev/null 2>&1
You can’t perform that action at this time.
0 commit comments