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.
This commit is contained in:
Ludovic Courtès 2020-07-20 20:35:20 +02:00
parent b3802495f6
commit cffaf285c1
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 3 deletions

View File

@ -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)))