diff options
author | kylo252 <[email protected]> | 2021-08-15 18:01:37 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-15 20:31:37 +0430 |
commit | 1fbc34cf1d3c2ec5500ddb6e14f04751680d969f (patch) | |
tree | cdecc7d7e826ed2e47af17f552038261f34639d4 /utils/bin | |
parent | 6eb75c5678ddb4d040f644e331e222078b99b3a1 (diff) |
Fix slow CI by installing a neovim binary directly (#1059)
Diffstat (limited to 'utils/bin')
-rwxr-xr-x | utils/bin/install-latest-neovim | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/utils/bin/install-latest-neovim b/utils/bin/install-latest-neovim deleted file mode 100755 index 8d1d95fd..00000000 --- a/utils/bin/install-latest-neovim +++ /dev/null @@ -1,9 +0,0 @@ -!#/bin/bash -cd ~ -sudo rm -r neovim -git clone --branch master --depth 1 https://github.com/neovim/neovim -cd neovim -sudo make CMAKE_BUILD_TYPE=Release install -cd ~ -sudo rm -r neovim - |