From 7caa3506eac288afcd224023ba526f27e3da893b Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Thu, 30 Jul 2020 09:01:39 +0200 Subject: [PATCH] =?UTF-8?q?guix:=20lint:=20Ignore=20unsupported=20source?= =?UTF-8?q?=20URL=E2=80=99s.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/lint.scm (check-source): Add match case for #f. Signed-off-by: Mathieu Othacehe --- guix/lint.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guix/lint.scm b/guix/lint.scm index 8a55f3e744..71ce931964 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))))))))