Fix doom build skipping some packages
This commit is contained in:
parent
8566cfac7b
commit
75549f5743
1 changed files with 3 additions and 1 deletions
|
@ -301,7 +301,9 @@ declaration) or dependency thereof that hasn't already been."
|
|||
;; Ensure packages with outdated files/bytecode are rebuilt
|
||||
(let* ((build-dir (straight--build-dir package))
|
||||
(repo-dir (straight--repos-dir local-repo))
|
||||
(build (plist-get recipe :build))
|
||||
(build (if (plist-member recipe :build)
|
||||
(plist-get recipe :build)
|
||||
straight--build-default-steps))
|
||||
(want-byte-compile
|
||||
(or (eq build t)
|
||||
(memq 'compile build)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue