diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-01-20 17:27:28 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-20 17:27:28 -0800 |
commit | 99aec382596bffaa91d0a944dc9474e42331ad93 (patch) | |
tree | 6da5117b428b925fdb46386c8c02b84a92cff6a3 /ci/install.sh | |
parent | f245c0218adc9ff3452660dff97e62cea8e9a411 (diff) | |
parent | b4e4ed844a25aa0ec43404e4ec318d0b54e0e1dd (diff) | |
download | rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.tar.gz rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.tar.bz2 rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.zip |
Merge #11703 'CI: install perl provider'
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/install.sh b/ci/install.sh index 3364edfe70..b3ec9e7f65 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -50,3 +50,6 @@ else gcc -m32 -o "$TREE_SITTER_DIR/bin/c.so" -shared parser.c -I. fi test -f "$TREE_SITTER_DIR/bin/c.so" + +sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log" +perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION' |