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:
Lars-Dominik Braun 2020-07-30 09:01:39 +02:00 committed by Mathieu Othacehe
parent c7fe7f2c24
commit 7caa3506ea
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 3 additions and 0 deletions

View File

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