Skip to content

Commit

Permalink
Rollup merge of rust-lang#38655 - alexcrichton:travis-and-then, r=brson
Browse files Browse the repository at this point in the history
travis: Use `&&` intead of `;`

Show errors sooner and try not to hide them behind lots of other walls of text.
  • Loading branch information
alexcrichton authored Dec 30, 2016
2 parents 3c8a17f + 88429dc commit 031aa58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ script:
if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
echo skipping, not a full build;
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
git submodule update --init;
git submodule update --init &&
src/ci/run.sh;
else
git submodule update --init;
git submodule update --init &&
src/ci/docker/run.sh $IMAGE;
fi
Expand Down

0 comments on commit 031aa58

Please sign in to comment.