[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))))))))
- branch master updated (c7fe7f2 -> 3cc8b4f), guix-commits, 2020/08/01
- 03/07: gnu: Add python-pytest-ordering., guix-commits, 2020/08/01
- 01/07: guix: lint: Ignore unsupported source URL’s.,
guix-commits <=
- 02/07: gnu: qtimageformats: Fix build., guix-commits, 2020/08/01
- 04/07: gnu: Update xxhash to 0.8.0., guix-commits, 2020/08/01
- 05/07: gnu: plantuml: Update to 1.2020.15., guix-commits, 2020/08/01
- 06/07: gnu: xfce4-notifyd: Update to 0.6.1., guix-commits, 2020/08/01
- 07/07: gnu: pulsemixer: Update to 1.5.1., guix-commits, 2020/08/01