diff options
author | James McCoy <jamessan@jamessan.com> | 2016-12-27 23:25:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 23:25:24 -0500 |
commit | 9009c20edb066811417aa1a044e643f1d4050f7c (patch) | |
tree | 27e1fd21eb4bdfe2a8531246ddf873ca66267e8e /.ci/install.sh | |
parent | c8b30307b7df0ccdc83b261733ae83bf7ff9c384 (diff) | |
parent | 068399b13b35e2c28c6139b106f6afe522700a7d (diff) | |
download | rneovim-9009c20edb066811417aa1a044e643f1d4050f7c.tar.gz rneovim-9009c20edb066811417aa1a044e643f1d4050f7c.tar.bz2 rneovim-9009c20edb066811417aa1a044e643f1d4050f7c.zip |
Merge pull request #5827 from justinmk/travisupdate
ci: Install cscope, remove deadsnakes PPA
Diffstat (limited to '.ci/install.sh')
-rwxr-xr-x | .ci/install.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index 9df5b6e980..98d3dc01cb 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -17,11 +17,7 @@ echo "Install neovim module and coveralls for Python 2." CC=cc pip2.7 -q install --user --upgrade neovim cpp-coveralls echo "Install neovim module for Python 3." -if [[ "${TRAVIS_OS_NAME}" == osx ]]; then - CC=cc pip3 -q install --user --upgrade neovim -else - CC=cc pip3.3 -q install --user --upgrade neovim -fi +CC=cc pip3 -q install --user --upgrade neovim echo "Install neovim RubyGem." gem install --no-document --version ">= 0.2.0" neovim |