From f6df8bd54a4280356c158b1b2f0e6c722395d308 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 4 Jun 2014 18:38:59 -0700 Subject: [travis] fix linux setup --- scripts/setup_travis.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/setup_travis.sh b/scripts/setup_travis.sh index 7fcaf66e28..294710d5d7 100755 --- a/scripts/setup_travis.sh +++ b/scripts/setup_travis.sh @@ -7,7 +7,7 @@ set -o pipefail if [[ "${TRAVIS_OS_NAME:-false}" == false ]]; then if [[ $(uname -s) == "Darwin" ]]; then TRAVIS_OS_NAME="osx" - elif [[ $(uname -s) == "Darwin" ]]; then + elif [[ $(uname -s) == "Linux" ]]; then TRAVIS_OS_NAME="linux" fi fi @@ -27,7 +27,7 @@ if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then export CXX="g++-4.8" ; fi - # Tf building in debug then turn on sanitizers. + # If building in debug then turn on sanitizers. # They should both work with latest g++/clang++ # but it's not worth a standalone matrix so here # we just test address->gcc and thread->clang for -- cgit v1.2.1