From 59f55274fa22494aa86a2640335f78bd3176a41c Mon Sep 17 00:00:00 2001 From: yage Date: Wed, 17 Aug 2022 00:05:22 -0600 Subject: [PATCH] ok more fixes --- bin/{local => }/scwrypts | 0 bin/{local => }/vim | 0 setup/config.zsh | 2 -- vim/update | 9 ++++++++- 4 files changed, 8 insertions(+), 3 deletions(-) rename bin/{local => }/scwrypts (100%) rename bin/{local => }/vim (100%) diff --git a/bin/local/scwrypts b/bin/scwrypts similarity index 100% rename from bin/local/scwrypts rename to bin/scwrypts diff --git a/bin/local/vim b/bin/vim similarity index 100% rename from bin/local/vim rename to bin/vim diff --git a/setup/config.zsh b/setup/config.zsh index 3ba077e..d27df6c 100644 --- a/setup/config.zsh +++ b/setup/config.zsh @@ -39,8 +39,6 @@ CONFIG__VIM() { && __SUCCESS 'completed vim setup' \ || __FAIL 1 'error detected in vim setup (see above)' \ ; - - SCWRYPTS zsh/vim/vundle/install || return 4 } ##################################################################### diff --git a/vim/update b/vim/update index 3f9dbfd..7cfb153 100755 --- a/vim/update +++ b/vim/update @@ -26,10 +26,12 @@ UPDATE() { ; VIM_INSTALL $@ --only-build || __FAIL 2 'vim build failed (try with --clean for make clean)' + + VUNDLE_INSTALL || __FAIL 3 'vundle plugin install failed' } VIM_INSTALL() { - "$DOTWRYN/zsh/plugins/scwrypts/scwrypts" --env local --no-log \ + "$DOTWRYN/bin/scwrypts" --env local --no-log \ zsh/git/package/install -- \ --target-url 'https://github.com/vim/vim.git' \ --local-name 'vim' \ @@ -37,5 +39,10 @@ VIM_INSTALL() { $@ } +VUNDLE_INSTALL() { + "$DOTWRYN/bin/scwrypts" --env local --no-log \ + zsh/vim/vundle/install $@ +} + ##################################################################### UPDATE $@