diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-05-26 14:50:23 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-05-26 15:29:32 +0200 |
commit | a2155f41f53eeb5000857e7160c5ad0916dc9bfa (patch) | |
tree | 4273a9959e679d15a9bafe19f0aac6ce81efadd4 | |
parent | efff3fd87921b27d536c622410fab2255e5b5457 (diff) | |
download | guix-a2155f41f53eeb5000857e7160c5ad0916dc9bfa.tar.gz |
guix: ci: Fix evaluation complete? field.
* guix/ci.scm (<evaluation>): Fix evaluation complete? field.
-rw-r--r-- | guix/ci.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ci.scm b/guix/ci.scm index c70e5bb9e6..44cf0c5074 100644 --- a/guix/ci.scm +++ b/guix/ci.scm @@ -100,7 +100,7 @@ json->evaluation (id evaluation-id) ;integer (spec evaluation-spec "specification") ;string - (complete? evaluation-complete? "in-progress" + (complete? evaluation-complete? "status" (match-lambda (0 #t) (_ #f))) ;Boolean |