From 9f024e549f33ec4fd75af6a9302cb3b3b4e2cdfb Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 25 May 2020 16:27:51 -0400 Subject: [PATCH] Instruct user to rerun 'doom upgrade' If it fails during reloading of Doom's core. Relevant to #3131 --- core/cli/upgrade.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/cli/upgrade.el b/core/cli/upgrade.el index 5c592dc4c..590af2f36 100644 --- a/core/cli/upgrade.el +++ b/core/cli/upgrade.el @@ -122,8 +122,10 @@ following shell commands: core-packages)) (doom-initialize 'force)) (error - (signal 'doom-error (list "Could not upgrade Doom without issues" - e)))) + (signal 'doom-error + (list "Could not reload new version of Doom" + "Try running 'doom upgrade' again" + e)))) (print! (success "Finished upgrading Doom Emacs"))) t)))))