From 120cd3f4d91e86b5be85380445072c13aa5a6738 Mon Sep 17 00:00:00 2001 From: bretello Date: Mon, 22 Apr 2024 09:50:05 +0200 Subject: [PATCH] zsh: fix autoupgrade script for antidote --- extras/check_for_update.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/check_for_update.zsh b/extras/check_for_update.zsh index 585b771..5353825 100755 --- a/extras/check_for_update.zsh +++ b/extras/check_for_update.zsh @@ -30,7 +30,7 @@ function _update_dotfiles_update() { function update_dotfiles() { (cd $DOTFILES; git pull -q --rebase && echo "Succesfully upgraded dotfiles" || echo "Could not upgrade dotfiles.") - (cd $DOTFILES/antidote && git pull -rebase || echo "Could not upgrade antidote") + (cd $DOTFILES/antidote && git pull --rebase || echo "Could not upgrade antidote") vim -c 'PlugUpdate|PlugClean|qa!' # update the zsh file _update_dotfiles_update