We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b99955 commit e6514b8Copy full SHA for e6514b8
.travis.yml
@@ -92,7 +92,10 @@ after_success:
92
- cd $TRAVIS_BUILD_DIR
93
- git config --global user.name "TRAVIS-CI-for-$(git --no-pager show -s --format='%cn' $TRAVIS_COMMIT)"
94
- git config --global user.email "$(git --no-pager show -s --format='%ce' $TRAVIS_COMMIT)"
95
- - [[ $DEPLOY_DOCUMENTATION == [yY]* ]] && ./deploy.sh #publish docs for master branch and tags
+ - |
96
+ if [[ $DEPLOY_DOCUMENTATION == [yY]* ]]; then
97
+ ./deploy.sh #publish docs for master branch and tags
98
+ fi
99
- (yes | rm -r doc gh-pages) || true # wipe out doc dirs to avoid confusing codecov
100
- |
101
if [[ $CODE_COVERAGE == [yY]* ]]; then
0 commit comments