From 926bb413a481ffdc44cefed7e11da5de309c099f Mon Sep 17 00:00:00 2001 From: bretello Date: Mon, 12 Apr 2021 09:58:57 +0200 Subject: [PATCH] updater: add vim plugins update --- check_for_update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/check_for_update.sh b/check_for_update.sh index c56db84..4f349ff 100755 --- a/check_for_update.sh +++ b/check_for_update.sh @@ -25,12 +25,13 @@ function current_epoch() { } function _update_dotfiles_update() { - echo "LAST_EPOCH=$(current_epoch)" >! "${DOTFILES}/.dotfiles-update" + echo "LAST_EPOCH=$(current_epoch)" >! "${DOTFILES_UPDATEFILE}" } function update_dotfiles() { (cd $DOTFILES; git pull -q --rebase && echo "Succesfully upgraded dotfiles" || echo "Could not upgrade dotfiles.") antibody update + vim -c 'PlugUpdate|PlugClean|qa!' # update the zsh file _update_dotfiles_update }