Install packages in the order they are declared

This commit is contained in:
Henrik Lissner 2018-01-04 16:08:48 -05:00
parent 2598d48bba
commit a29bc54c63
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -326,7 +326,7 @@ package.el as appropriate."
"Interactive command for installing missing packages." "Interactive command for installing missing packages."
(interactive) (interactive)
(message! "Looking for packages to install...") (message! "Looking for packages to install...")
(let ((packages (doom-get-missing-packages))) (let ((packages (reverse (doom-get-missing-packages))))
(cond ((not packages) (cond ((not packages)
(message! (green "No packages to install!"))) (message! (green "No packages to install!")))