summary refs log tree commit diff
path: root/guix/ci.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-03-31 12:30:21 +0200
committerLudovic Courtès <ludo@gnu.org>2020-03-31 14:55:42 +0200
commit2c33901fb1f580b50d9649d5e93928172c5d12b7 (patch)
tree1b087adb491b756dcaa679b493c293312d607eef /guix/ci.scm
parent06efbe2fbab1475e4f82f410ee5cd27620b23bf4 (diff)
downloadguix-2c33901fb1f580b50d9649d5e93928172c5d12b7.tar.gz
ci: Fix 'evaluation-spec' binding.
* guix/ci.scm (<evaluation>)[spec]: Add "specification", which is what
the JSON field is actually called.
Diffstat (limited to 'guix/ci.scm')
-rw-r--r--guix/ci.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/ci.scm b/guix/ci.scm
index 9e21996023..8fd05668f2 100644
--- a/guix/ci.scm
+++ b/guix/ci.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2018, 2019 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -68,7 +68,7 @@
 (define-json-mapping <evaluation> make-evaluation evaluation?
   json->evaluation
   (id          evaluation-id)                     ;integer
-  (spec        evaluation-spec)                   ;string
+  (spec        evaluation-spec "specification")   ;string
   (complete?   evaluation-complete? "in-progress"
                (match-lambda
                  (0 #t)