refresh: Account for hidden packages.
Suggested by Marius Bakke <mbakke@fastmail.com> in <https://bugs.gnu.org/29177>. * guix/scripts/refresh.scm (all-packages): Pass #:select? to 'fold-packages'.
This commit is contained in:
parent
96dc8f3527
commit
8e57e416c0
|
@ -273,7 +273,8 @@ the latest known version of ~a (~a)~%")
|
|||
|
||||
(define (all-packages)
|
||||
"Return the list of all the distro's packages."
|
||||
(fold-packages cons '()))
|
||||
(fold-packages cons '()
|
||||
#:select? (const #t))) ;include hidden packages
|
||||
|
||||
(define (list-dependents packages)
|
||||
"List all the things that would need to be rebuilt if PACKAGES are changed."
|
||||
|
|
Loading…
Reference in New Issue