Skip to content

Commit 031aa58

Browse files
authored
Rollup merge of rust-lang#38655 - alexcrichton:travis-and-then, r=brson
travis: Use `&&` intead of `;` Show errors sooner and try not to hide them behind lots of other walls of text.
2 parents 3c8a17f + 88429dc commit 031aa58

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
@@ -67,10 +67,10 @@ script:
6767
if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
6868
echo skipping, not a full build;
6969
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
70-
git submodule update --init;
70+
git submodule update --init &&
7171
src/ci/run.sh;
7272
else
73-
git submodule update --init;
73+
git submodule update --init &&
7474
src/ci/docker/run.sh $IMAGE;
7575
fi
7676

0 commit comments

Comments
 (0)