guix: lint: Ignore unsupported source URL’s.
* guix/lint.scm (check-source): Add match case for #f. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
c7fe7f2c24
commit
7caa3506ea
@ -794,6 +794,9 @@ descriptions maintained upstream."
|
||||
(#t
|
||||
;; We found a working URL, so stop right away.
|
||||
'())
|
||||
(#f
|
||||
;; Unsupported URL or other error, skip.
|
||||
(loop rest warnings))
|
||||
((? lint-warning? warning)
|
||||
(loop rest (cons warning warnings))))))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user