From 2d21f1af6df2075084155692694bfcab1b6aa9c5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 30 Aug 2018 13:36:21 +0200 Subject: [PATCH] Fix comparison link for `doom upgrade` The hashes were the wrong way around. --- core/core-cli.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-cli.el b/core/core-cli.el index 94491abd7..f269c53c8 100644 --- a/core/core-cli.el +++ b/core/core-cli.el @@ -287,7 +287,7 @@ problems with doom." (message "Updates for Doom are available!\n\n Old revision: %s\n New revision: %s\n" current-rev rev) (message "Comparision diff: https://github.com/hlissner/doom-emacs/compare/%s...%s\n" - (substring rev 0 10) (substring current-rev 0 10)) + (substring current-rev 0 10) (substring rev 0 10)) ;; TODO Display newsletter diff (unless (or doom-auto-accept (y-or-n-p "Proceed?")) (user-error "Aborted"))