Skip to content

Commit c012fec

Browse files
authored
Merge pull request #2618 from rcoh/patch-1
Move `set -e` to before the deploy
2 parents 90fcdaf + 35125d3 commit c012fec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ script:
5050
after_success: |
5151
#!/bin/bash
5252
if [ $(uname) == Linux ]; then
53-
./.github/deploy.sh
54-
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
5553
set -e
54+
./.github/deploy.sh
55+
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
5656
if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
5757
[ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&
5858
[ "$TRAVIS_BRANCH" == "master" ] &&

0 commit comments

Comments
 (0)