diff options
author | James McCoy <jamessan@jamessan.com> | 2020-03-22 13:35:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 13:35:51 -0400 |
commit | 61d4b81d21d4907b97c706866c1ce663c417f433 (patch) | |
tree | 06fc89eba29e9aab3dd4df5feea15720a0c2b30b /ci/install.sh | |
parent | 87d892afa0475644e91d9c8a57b7c35491c4dc32 (diff) | |
parent | ca828eaed66af0592bcf606f08c8b2875b0e7c48 (diff) | |
download | rneovim-61d4b81d21d4907b97c706866c1ce663c417f433.tar.gz rneovim-61d4b81d21d4907b97c706866c1ce663c417f433.tar.bz2 rneovim-61d4b81d21d4907b97c706866c1ce663c417f433.zip |
Merge pull request #12026 from jamessan/s390x-travis
Add big-endian, s390x job for Travis
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 769f00c5ba..a4dfc87a1b 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 --upgrade pynvim +CC=cc python3 -m pip -q install --user --upgrade pynvim echo "Install neovim module for Python 2." -CC=cc python2 -m pip -q install --upgrade pynvim +CC=cc python2 -m pip -q install --user --upgrade pynvim echo "Install neovim RubyGem." gem install --no-document --version ">= 0.8.0" neovim |