mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
weather: Fix type error when reporting CI stats.
* guix/scripts/weather.scm (report-server-coverage): Remove 'missing' binding above 'queued-subset' call. Before that 'queued-subset' would be called with a number instead of a list.
This commit is contained in:
parent
e64a3b436a
commit
7c8b7e35d0
1 changed files with 4 additions and 4 deletions
|
@ -208,10 +208,10 @@ (define MiB (* (expt 2 20) 1.))
|
|||
0 queue)))
|
||||
(newline)
|
||||
(unless (null? missing)
|
||||
(let ((missing (length missing)))
|
||||
(match (queued-subset queue missing)
|
||||
(#f #f)
|
||||
((= length queued)
|
||||
(match (queued-subset queue missing)
|
||||
(#f #f)
|
||||
((= length queued)
|
||||
(let ((missing (length missing)))
|
||||
(format #t (G_ " ~,1f% (~h out of ~h) of the missing items \
|
||||
are queued~%")
|
||||
(* 100. (/ queued missing))
|
||||
|
|
Loading…
Reference in a new issue