Skip to content

Commit d1eb84a

Browse files
committed
docs(lib): fix syntax error docs generation command
1 parent 63b6152 commit d1eb84a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ after_success: |
3737
ls target/debug &&
3838
./kcov-master/tmp/usr/local/bin/kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo target/kcov target/debug/hyper-* &&
3939
[ $TRAVIS_PULL_REQUEST = false ] &&
40-
[ "$TRAVIS_TAG" != "" || $TRAVIS_BRANCH = master ] &&
41-
[ $TRAVIS_RUST_VERSION = stable ] &&
40+
{ [ "$TRAVIS_TAG" != "" ] || [ "$TRAVIS_BRANCH" == "master" ]; } &&
4241
cargo doc --no-deps &&
43-
./.travis/docs.sh
42+
./.travis/docs.sh &&
43+
echo "\nDocs published.\n"
4444
4545
env:
4646
global:

0 commit comments

Comments
 (0)