Browse Source

we don't need all the neovim git history to install the latest version (#756)

Abouzar Parvan 4 years ago
parent
commit
649849ad58
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/bin/install-latest-neovim

+ 1 - 1
utils/bin/install-latest-neovim

@@ -1,7 +1,7 @@
 !#/bin/bash
 cd ~
 sudo rm -r neovim
-git clone https://github.com/neovim/neovim
+git clone --branch master --depth 1 https://github.com/neovim/neovim
 cd neovim
 sudo make CMAKE_BUILD_TYPE=Release install
 cd ~