소스 검색

Update dein to use older release

The newest master branch of dein changed the installation process. WHY?!?!?!?!?!?
Donald Duvall 2 년 전
부모
커밋
e5ba44fb65
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      ubuntu-vim.sh

+ 5 - 1
ubuntu-vim.sh

@@ -10,7 +10,8 @@
 sudo apt update && sudo apt install -y git vim curl
 
 # We need to obtain and run the dein install
-curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
+#curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh  # OLD Install from main (Main has new install procedure)
+curl https://raw.githubusercontent.com/Shougo/dein.vim/release/bin/installer.sh > installer.sh
 sh ./installer.sh ~/.cache/dein
 
 
@@ -91,3 +92,6 @@ set list
 set listchars+=tab:>-,space:.
 
 EOF
+
+# Cleanup dein installer tmp file
+rm ./installer.sh