From 328a525afddcd54135f9645b3b5ebda423a49fff Mon Sep 17 00:00:00 2001 From: James Patrick Date: Mon, 2 Dec 2019 10:05:32 -0500 Subject: [PATCH] Switched from update and upgrade to just refresh. Upgrade and update (which is a bit redundant as upgrade does an update.) take a prohibitively long time on both of my machines. Instead I'll manually manage that and just use refresh instead. --- emacs/makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/emacs/makefile b/emacs/makefile index 9671875..f2e4c32 100644 --- a/emacs/makefile +++ b/emacs/makefile @@ -51,8 +51,7 @@ update: ifeq ($(shell [ -e $(EMACSD) ] $(return_val_truthy) ), false) $(report) info "Emacs directory doesn't exist." else ifeq ($(FRAMEWORK), doom) - ~/.emacs.d/bin/doom --yes update - ~/.emacs.d/bin/doom --yes upgrade + ~/.emacs.d/bin/doom --yes refresh $(report) info "Doom updated" else cd $(EMACSD) \