From 88429dc5751fa134b87a78977ce938c61900f059 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 28 Dec 2016 09:29:14 -0800 Subject: [PATCH] travis: Use `&&` intead of `;` Show errors sooner and try not to hide them behind lots of other walls of text. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3a9635a86180a..bbe11e18472e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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