This website works better with JavaScript.
Home
Explore
Help
Sign In
guix-bioinformatics
/
guix
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
gnu-maintenance: Add missing type check.
* guix/gnu-maintenance.scm (gnu-package?): Only call 'mirror-type' when URL is a string.
gn-latest-20200428
Ludovic Courtès
6 years ago
parent
1d4628329d
commit
515eba4543
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
guix/gnu-maintenance.scm
+ 1
- 1
guix/gnu-maintenance.scm
View File
@@ -176,7 +176,7 @@ network to check in GNU's database."
(let ((url (and=> (package-source package) origin-uri))
(name (package-name package)))
(case (and url (mirror-type url))
(case (and
(string?
url
)
(mirror-type url))
((gnu) #t)
((non-gnu) #f)
(else
Write
Preview
Loading…
Cancel
Save