Skip to content
Snippets Groups Projects
Commit 4ec09bb4 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

hydra: Fix typo.

* build-aux/hydra/gnu-system.scm (hydra-jobs): Use `cons', not `append'.
parent 77bed842
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment