From 39b3eb34c24167de057c2a408e80ffa0eb281028 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sat, 14 Nov 2020 17:23:23 -0500 Subject: ci: Install gem binaries to ~/.local/bin That directory is already part of `$PATH`, so let's reuse it instead of trying to figure what version-specific path binaries gem normally uses. --- ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') diff --git a/ci/install.sh b/ci/install.sh index cd0d744361..ebbd820d9f 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 --user-install --pre neovim +gem install --no-document --bindir "$HOME/.local/bin" --user-install --pre neovim echo "Install neovim npm package" source ~/.nvm/nvm.sh -- cgit