From 3ca4fe0c65990d989cacc4232a88468322b07dde Mon Sep 17 00:00:00 2001 From: yage Date: Sat, 11 Nov 2023 15:27:34 -0700 Subject: [PATCH] v3.7.4 ===================================================================== --- Bug Fixes ---------------------------- - fixed typo in Vundle.vim clone --- zsh/system/vim/vundle/install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/system/vim/vundle/install b/zsh/system/vim/vundle/install index e022135..94e0775 100755 --- a/zsh/system/vim/vundle/install +++ b/zsh/system/vim/vundle/install @@ -10,8 +10,9 @@ CHECK_ENVIRONMENT PLUGIN_INSTALL() { [ -d "$HOME/.vim/bundle/Vundle.vim" ] || { mkdir -p "$HOME/.vim/bundle/" - git clone https://github.com/VundleVim/Vundle.vim.git "$HOME/vim/budle/Vundle.vim" + git clone https://github.com/VundleVim/Vundle.vim.git "$HOME/.vim/bundle/Vundle.vim" } + VUNDLE__PLUGIN_INSTALL || return 1 VUNDLE__REBUILD_PLUGINS || return 2 }