mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
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
1 changed files with 3 additions and 0 deletions
|
@ -794,6 +794,9 @@ (define (warnings-for-uris uris)
|
|||
(#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 a new issue