diff options
-rw-r--r-- | ci/build.ps1 | 2 | ||||
-rwxr-xr-x | ci/install.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 36570be7ae..08fc76393d 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -116,7 +116,7 @@ if (-not $NoTests) { python3 -c "import pynvim; print(str(pynvim))" ; exitIfFailed $env:PATH = "C:\Ruby24\bin;$env:PATH" - gem.cmd install neovim + gem.cmd install --pre neovim Get-Command -CommandType Application neovim-ruby-host.bat npm.cmd install -g neovim diff --git a/ci/install.sh b/ci/install.sh index a4dfc87a1b..efb37cea4e 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -19,7 +19,7 @@ echo "Install neovim module for Python 2." CC=cc python2 -m pip -q install --user --upgrade pynvim echo "Install neovim RubyGem." -gem install --no-document --version ">= 0.8.0" neovim +gem install --no-document --pre neovim echo "Install neovim npm package" source ~/.nvm/nvm.sh |