Fix sorting license sets
This commit is contained in:
parent
c58ee6726b
commit
3f07df510e
1 changed files with 6 additions and 1 deletions
|
|
@ -77,7 +77,12 @@ FROM license_sets")
|
|||
((null? a) #f)
|
||||
((null? b) #t)
|
||||
(else
|
||||
(< (car a) (car b))))))))
|
||||
(let ((a1 (car a))
|
||||
(b1 (car b)))
|
||||
(if (= a1 b1)
|
||||
(loop (cdr a)
|
||||
(cdr b))
|
||||
(< a1 b1)))))))))
|
||||
(new-license-set-entries
|
||||
(if (null? missing-license-sets)
|
||||
'()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue