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)
|
(version version)
|
||||||
(urls (list (string-append base-url directory "/" url)))
|
(urls (list (string-append base-url directory "/" url)))
|
||||||
(signature-urls
|
(signature-urls
|
||||||
(list (string-append base-url directory "/"
|
(list (file->signature
|
||||||
(file-sans-extension url)
|
(string-append base-url directory "/" url))))))))
|
||||||
".sign")))))))
|
|
||||||
|
|
||||||
(define candidates
|
(define candidates
|
||||||
(filter-map url->release (html-links sxml)))
|
(filter-map url->release (html-links sxml)))
|
||||||
|
|
Reference in New Issue