diff options
author | James McCoy <jamessan@jamessan.com> | 2020-11-18 22:44:00 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-11-23 08:43:37 -0500 |
commit | 80d1c4da5ffb652474e398f2d4ce6fd1d66a878e (patch) | |
tree | 2a55a7fdaf17246f7f7fb5e949ea2d8cb0a4bab7 | |
parent | 1e7d937e1688f4ead301a4daaea649cb95cd9309 (diff) | |
download | rneovim-80d1c4da5ffb652474e398f2d4ce6fd1d66a878e.tar.gz rneovim-80d1c4da5ffb652474e398f2d4ce6fd1d66a878e.tar.bz2 rneovim-80d1c4da5ffb652474e398f2d4ce6fd1d66a878e.zip |
ci: Only try installing python-pynvim if Py2 pip is present
-rwxr-xr-x | ci/install.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/install.sh b/ci/install.sh index ebbd820d9f..1edc1138ee 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -15,8 +15,10 @@ 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 -echo "Install neovim module for Python 2." -CC=cc python2 -m pip -q install --user --upgrade pynvim +if python2 -m pip -c True 2>&1; then + echo "Install neovim module for Python 2." + CC=cc python2 -m pip -q install --user --upgrade pynvim +fi echo "Install neovim RubyGem." gem install --no-document --bindir "$HOME/.local/bin" --user-install --pre neovim |