summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setup_travis.sh4
1 files changed, 2 insertions, 2 deletions
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