Merge pull request #2618 from rcoh/patch-1
Move `set -e` to before the deploy
This commit is contained in:
commit
c012fecce6
|
@ -50,9 +50,9 @@ script:
|
|||
after_success: |
|
||||
#!/bin/bash
|
||||
if [ $(uname) == Linux ]; then
|
||||
./.github/deploy.sh
|
||||
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
|
||||
set -e
|
||||
./.github/deploy.sh
|
||||
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
|
||||
if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
|
||||
[ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&
|
||||
[ "$TRAVIS_BRANCH" == "master" ] &&
|
||||
|
|
Loading…
Reference in New Issue