Skip to content

Commit

Permalink
Merge pull request #368 from amperser/travis-bug
Browse files Browse the repository at this point in the history
Fix bug in Travis yml
  • Loading branch information
suchow committed Mar 9, 2016
2 parents 192df39 + 61201d4 commit fd1eb74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ script:
- pep8 .
- pep257 . --match='.*\.py'
- nosetests --with-coverage --cover-package proselint
- if [ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]; then
- if [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
python scripts/insert_demo.py;
cd site;
jekyll build;
Expand Down

0 comments on commit fd1eb74

Please sign in to comment.