diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2015-01-06 21:27:10 +0100 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2015-01-06 21:27:10 +0100 |
commit | e82d2746f4b579a99017eaac597a5b7d02b4d9cc (patch) | |
tree | 25f16e102d1e7fe5ffb37714a9b4512721591b3b /.travis.yml | |
parent | 597cca27bccc8b2d92b345ea411a1910d69dec3f (diff) | |
download | fork-ledger-e82d2746f4b579a99017eaac597a5b7d02b4d9cc.tar.gz fork-ledger-e82d2746f4b579a99017eaac597a5b7d02b4d9cc.tar.bz2 fork-ledger-e82d2746f4b579a99017eaac597a5b7d02b4d9cc.zip |
[travis] Fix typo in .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 50f2f00b..96cadb42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,8 +21,8 @@ before_install: install: # Install GNU GCC 4.8 required by use of C++11 - - if [ "$CXX" == "g++" ]; sudo apt-get install -qq g++-4.8 gcc-4.8; fi - - if [ "$CXX" == "g++" ]; export CXX="g++-4.8" CC="gcc-4.8"; fi + - if [ "$CXX" = "g++" ]; sudo apt-get install -qq g++-4.8 gcc-4.8; fi + - if [ "$CXX" = "g++" ]; export CXX="g++-4.8" CC="gcc-4.8"; fi # Install Ledger dependencies - sudo apt-get install -qq libboost1.55 libgmp-dev libmpfr-dev libeditline-dev |