Skip to content

Commit 53da115

Browse files
committed
for now, specify working ford/markdown combination that works for documentation generation on Travis-CI.
fixed some typos in deploy script.
1 parent 0ab2f1d commit 53da115

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ install:
6868
- pip install --upgrade pygooglechart
6969
- pip install --upgrade graphviz
7070
- (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)
7273
- (pip install --upgrade git+https://github.com/dmeranda/demjson.git && jsonlint --version)
7374

7475
before_script:

deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/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
33
# If running under travis-ci this will automatically deploy updates to the master branch's
44
# documentation on build events for the master branch, and will add/update documentation for
55
# any new/updated tags that are pushed.
@@ -20,7 +20,7 @@ if [ "$TRAVIS" ]; then #running under travis
2020
git commit -m "Development documentation updated by travis job $TRAVIS_JOB_NUMBER for commits $TRAVIS_COMMIT_RANGE" || true
2121
git push -fq origin gh-pages > /dev/null 2>&1 || true
2222
fi
23-
# If publishing a new/updated tag, deploy it's documentation
23+
# If publishing a new/updated tag, deploy its documentation
2424
if [ "$TRAVIS_TAG" ] && [ "$(ls -A "$TRAVIS_BUILD_DIR/doc")" ] ; then #not empty
2525
cd "$TRAVIS_BUILD_DIR" || exit 1
2626
git clone -q --branch=gh-pages "https://${GH_TOKEN}@github.com/$TRAVIS_REPO_SLUG" gh-pages >/dev/null 2>&1

0 commit comments

Comments
 (0)