diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-24 12:03:44 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-24 12:03:44 -0400 |
commit | 8b4809d680b99d18ef5ce7b8bdce4f8eb87fb201 (patch) | |
tree | 50c864738ca00975445edd770f0b1728b5d442d9 | |
parent | 3bc2342303973525addf3714d3daadd3d308efec (diff) |
Fix travis file
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 8606e5a51..c826159a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,13 +13,13 @@ env: - PROTOBUF_ROOT=$HOME/protobuf before_install: | if [[ $TRAVIS_OS_NAME == 'linux' ]]; then - # protoc + # protoc mkdir -p $PROTOBUF_ROOT - pushd $PROTOBUF_ROOT - wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip - unzip protoc-3.1.0-linux-x86_64.zip - popd - export PATH=$PROTOBUF_ROOT/bin:$PATH + pushd $PROTOBUF_ROOT + wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip + unzip protoc-3.1.0-linux-x86_64.zip + popd + export PATH=$PROTOBUF_ROOT/bin:$PATH fi install: - mkdir -p $HOME/.ccache |