Prevent 'doom sync' rebuilding all packages, each time

This commit is contained in:
Henrik Lissner 2020-05-25 17:14:56 -04:00
parent e4d508b47f
commit 15a58d5b81
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -173,7 +173,7 @@ declaration) or dependency thereof that hasn't already been."
(unless force-p (unless force-p
(straight--make-build-cache-available)) (straight--make-build-cache-available))
(if-let (built (if-let (built
(doom--with-package-recipes recipes (package local-repo) (doom--with-package-recipes recipes (package local-repo recipe)
(unless force-p (unless force-p
;; Ensure packages with outdated files/bytecode are rebuilt ;; Ensure packages with outdated files/bytecode are rebuilt
(let ((build-dir (straight--build-dir package)) (let ((build-dir (straight--build-dir package))
@ -189,6 +189,7 @@ declaration) or dependency thereof that hasn't already been."
if (and (file-exists-p elc-file) if (and (file-exists-p elc-file)
(file-newer-than-file-p file elc-file)) (file-newer-than-file-p file elc-file))
return t))) return t)))
(not (plist-get recipe :no-build))
(puthash package t straight--packages-to-rebuild)))) (puthash package t straight--packages-to-rebuild))))
(straight-use-package (intern package)))) (straight-use-package (intern package))))
(print! (success "Rebuilt %d package(s)") (length built)) (print! (success "Rebuilt %d package(s)") (length built))