Fix 'wrong-type-arg' error on 'doom upgrade'

This commit is contained in:
Henrik Lissner 2020-05-26 03:12:35 -04:00
parent 894966b1e2
commit b6cc110f4c
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -24,7 +24,7 @@ following shell commands:
;; Reload Doom's CLI & libraries, in case there were any upstream changes. ;; Reload Doom's CLI & libraries, in case there were any upstream changes.
;; Major changes will still break, however ;; Major changes will still break, however
(print! (info "Reloading Doom Emacs")) (print! (info "Reloading Doom Emacs"))
(doom-cli-execute-after "doom" '("upgrade" "-p" (if force-p "-f")))) (doom-cli-execute-after "doom" "upgrade" "-p" (if force-p "-f")))
((print! "Nothing to do. Doom is up-to-date!"))))) ((print! "Nothing to do. Doom is up-to-date!")))))