gnu-maintenance: 'latest-html-release' honors #:file->signature.
* guix/gnu-maintenance.scm (latest-html-release): Call FILE->SIGNATURE instead of the in-line ".tar.sign" policy.master
parent
b3802495f6
commit
cffaf285c1
|
@ -497,9 +497,8 @@ return the corresponding signature URL, or #f it signatures are unavailable."
|
|||
(version version)
|
||||
(urls (list (string-append base-url directory "/" url)))
|
||||
(signature-urls
|
||||
(list (string-append base-url directory "/"
|
||||
(file-sans-extension url)
|
||||
".sign")))))))
|
||||
(list (file->signature
|
||||
(string-append base-url directory "/" url))))))))
|
||||
|
||||
(define candidates
|
||||
(filter-map url->release (html-links sxml)))
|
||||
|
|
Reference in New Issue