mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
hydra: Fix typo.
* build-aux/hydra/gnu-system.scm (hydra-jobs): Use `cons', not `append'.
This commit is contained in:
parent
77bed84246
commit
4ec09bb410
1 changed files with 3 additions and 3 deletions
|
@ -130,8 +130,8 @@ (define (cross-jobs system)
|
|||
(fold-packages (lambda (package result)
|
||||
(if (member package base-packages)
|
||||
result
|
||||
(append (package-job store (job-name package)
|
||||
package system)
|
||||
result)))
|
||||
(cons (package-job store (job-name package)
|
||||
package system)
|
||||
result)))
|
||||
(cross-jobs system)))
|
||||
systems)))
|
||||
|
|
Loading…
Reference in a new issue