diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-14 16:02:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-14 16:02:15 -0700 |
commit | db550ac995652133fed0d16964f2cef2c49dbc82 (patch) | |
tree | 56ca855e154e56adb2e08ed91810aceaf41dfd5b /ci/install.sh | |
parent | fc27dc98d74f0e25bf1dc2cb8ff399b05ccd6f2c (diff) | |
parent | cccfc1b60387b31a878e33010c9d61f339e68d63 (diff) | |
download | rneovim-db550ac995652133fed0d16964f2cef2c49dbc82.tar.gz rneovim-db550ac995652133fed0d16964f2cef2c49dbc82.tar.bz2 rneovim-db550ac995652133fed0d16964f2cef2c49dbc82.zip |
Merge #11020 from janlazo/vim-8.1.0289
vim-patch:8.0.{1134,1148},8.1.{212,289,2028}
fix #10270
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/install.sh b/ci/install.sh index 134eb7968d..cda9a11f08 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -14,9 +14,9 @@ fi # Use default CC to avoid compilation problems when installing Python modules. echo "Install neovim module for Python 3." -CC=cc python3 -m pip -q install --user --upgrade pynvim +CC=cc python3 -m pip -q install --upgrade pynvim echo "Install neovim module for Python 2." -CC=cc python2 -m pip -q install --user --upgrade pynvim +CC=cc python2 -m pip -q install --upgrade pynvim echo "Install neovim RubyGem." gem install --no-document --version ">= 0.8.0" neovim |