"vscode:/vscode.git/clone" did not exist on "577417f4da7005e5aad73b5068a32a303c0d9252"
Commit 2a02cee1 authored by Jesse Beder's avatar Jesse Beder
Browse files

Fix typos in travis config.

Hooray for testing travis configs via pushing to master.
parent 2176fd99
...@@ -8,11 +8,10 @@ compiler: ...@@ -8,11 +8,10 @@ compiler:
before_install: before_install:
- | - |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y \
&& sudo apt-get update -qq && sudo apt-get update -qq \
if [ "$CXX" = "g++" ]; then && if [ "$CXX" == "g++" ]; then
sudo apt-get install -qq g++-4.7 sudo apt-get install -qq g++-4.7 && export CXX="g++-4.7" CC="gcc-4.7"
&& export CXX="g++-4.7" CC="gcc-4.7"
fi fi
fi fi
before_script: before_script:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment