guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/07: guix: lint: Ignore unsupported source URL’s.


From: guix-commits
Subject: 01/07: guix: lint: Ignore unsupported source URL’s.
Date: Sat, 1 Aug 2020 03:32:07 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 7caa3506eac288afcd224023ba526f27e3da893b
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
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 <othacehe@gnu.org>
---
 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

[Prev in Thread] Current Thread [Next in Thread]