From 2a02cee1c878b97be931e69f873ab44c42fac724 Mon Sep 17 00:00:00 2001 From: Jesse Beder Date: Fri, 1 Apr 2016 18:17:58 -0500 Subject: [PATCH] Fix typos in travis config. Hooray for testing travis configs via pushing to master. --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1bbfd54..d464896 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,11 +8,10 @@ compiler: before_install: - | if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - && sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then - sudo apt-get install -qq g++-4.7 - && export CXX="g++-4.7" CC="gcc-4.7" + sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y \ + && sudo apt-get update -qq \ + && if [ "$CXX" == "g++" ]; then + sudo apt-get install -qq g++-4.7 && export CXX="g++-4.7" CC="gcc-4.7" fi fi before_script: