Skip to content

Commit

Permalink
travis: Use && intead of ;
Browse files Browse the repository at this point in the history
Show errors sooner and try not to hide them behind lots of other walls of text.
  • Loading branch information
alexcrichton committed Dec 28, 2016
1 parent 0807104 commit 88429dc
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 @@ -66,10 +66,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 88429dc

Please sign in to comment.