ci: Fix 'evaluation-spec' binding.

* guix/ci.scm (<evaluation>)[spec]: Add "specification", which is what
the JSON field is actually called.
This commit is contained in:
Ludovic Courtès 2020-03-31 12:30:21 +02:00
parent 06efbe2fba
commit 2c33901fb1
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 2 deletions

View File

@ -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)