diff options
author | Ryan Yee <ryee88@gmail.com> | 2018-10-06 09:29:49 (GMT) |
---|---|---|
committer | Ryan Yee <ryee88@gmail.com> | 2018-10-11 08:13:09 (GMT) |
commit | a83429f5d31ad7c48bb0493475f8a77450f03311 (patch) | |
tree | e03f420774b91feef6ff6379ab0e162da28c2f4c /ci | |
parent | 40f82ce56a4b416aa4631e48d1d07377793b18ee (diff) | |
download | googletest-a83429f5d31ad7c48bb0493475f8a77450f03311.zip googletest-a83429f5d31ad7c48bb0493475f8a77450f03311.tar.gz googletest-a83429f5d31ad7c48bb0493475f8a77450f03311.tar.bz2 |
fix typo
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/env-osx.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/env-osx.sh b/ci/env-osx.sh index 127a969..03c2d15 100755 --- a/ci/env-osx.sh +++ b/ci/env-osx.sh @@ -34,7 +34,8 @@ # # TODO() - we can check if this is being sourced using $BASH_VERSION and $BASH_SOURCE[0] != ${0}. +# -if [ "${TRAVIS_OS_NAME}" = "linux" ]; then +if [ "${TRAVIS_OS_NAME}" = "osx" ]; then if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.9" CC="clang-3.9"; fi fi |