mothacehe pushed a commit to branch master
in repository guix.

commit 7caa3506eac288afcd224023ba526f27e3da893b
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Thu Jul 30 09:01:39 2020 +0200

    guix: lint: Ignore unsupported source URL’s.
    
    * guix/lint.scm (check-source): Add match case for #f.
    
    Signed-off-by: Mathieu Othacehe <[email protected]>
---
 guix/lint.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/guix/lint.scm b/guix/lint.scm
index 8a55f3e..71ce931 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -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))))))))
 

Reply via email to