diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-10-11 13:15:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 13:15:47 -0400 |
commit | f203b2db77161fe54846ea9e839ebec81aeeccac (patch) | |
tree | 51199d3375b10f2acc4a18e3a801ac18f1eefc28 | |
parent | ad997b16b5f9193809e168153e75645370812266 (diff) | |
parent | 4d50ab75a730a9aa237a076ddd1a5d4f9f3aadff (diff) | |
download | googletest-f203b2db77161fe54846ea9e839ebec81aeeccac.tar.gz googletest-f203b2db77161fe54846ea9e839ebec81aeeccac.tar.bz2 googletest-f203b2db77161fe54846ea9e839ebec81aeeccac.zip |
Merge pull request #1902 from theryee/typo
Fix typo
-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 127a969b..03c2d15d 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 |