[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: http: Really fix /jobsets for non-trivial build t
From: |
Ludovic Courtès |
Subject: |
branch master updated: http: Really fix /jobsets for non-trivial build types. |
Date: |
Wed, 06 Sep 2023 08:47:20 -0400 |
This is an automated email from the git hooks/post-receive script.
civodul pushed a commit to branch master
in repository guix-cuirass.
The following commit(s) were added to refs/heads/master by this push:
new 7a9194b http: Really fix /jobsets for non-trivial build types.
7a9194b is described below
commit 7a9194b15ed31a716433b81bb6929da4f69fcde0
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed Sep 6 14:46:30 2023 +0200
http: Really fix /jobsets for non-trivial build types.
* src/cuirass/http.scm (specification->json-object): Fix the non-trivial
cases for ‘build’.
---
src/cuirass/http.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/cuirass/http.scm b/src/cuirass/http.scm
index c0d4639..fd678dd 100644
--- a/src/cuirass/http.scm
+++ b/src/cuirass/http.scm
@@ -178,11 +178,11 @@
((? symbol? subset)
subset)
(('packages packages ...)
- (cons 'packages (list->vector packages)))
+ `((packages . ,(list->vector packages))))
(('channels channels ...)
- (cons 'channels (list->vector channels)))
+ `((channels . ,(list->vector channels))))
(('manifests manifests ...)
- (cons 'manifests (list->vector manifests)))
+ `((manifests . ,(list->vector manifests))))
(_
'custom)))
(channels . ,(list->vector
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: http: Really fix /jobsets for non-trivial build types.,
Ludovic Courtès <=