From 0b0defe4465b80ec02fa52019fcdbe079440f734 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Tue, 17 Nov 2015 14:55:07 -0800 Subject: [PATCH] Small .travis.yml update: Consolidate `brew` commands under a single `if` --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9ade3e9cf6..92b2614b16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,7 @@ addons: - libunwind8 - zlib1g before_install: - - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; fi - - if test "$TRAVIS_OS_NAME" == "osx"; then brew install icu4c; fi + - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install icu4c; fi env: - KOREBUILD_DNU_RESTORE_CORECLR=true MONO_THREADS_PER_CPU=2000 MONO_MANAGED_WATCHER=disabled mono: @@ -21,4 +20,4 @@ os: - linux - osx script: - - ./build.sh --quiet verify \ No newline at end of file + - ./build.sh --quiet verify