guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/11: gnu-maintenance: 'latest-html-release' honors #:file->signature.


From: guix-commits
Subject: 05/11: gnu-maintenance: 'latest-html-release' honors #:file->signature.
Date: Mon, 20 Jul 2020 17:26:11 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit cffaf285c19ea5f0465c7ad2196b7a478ef21873
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Jul 20 20:35:20 2020 +0200

    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.
---
 guix/gnu-maintenance.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/guix/gnu-maintenance.scm b/guix/gnu-maintenance.scm
index 9fe229f..a1273ab 100644
--- a/guix/gnu-maintenance.scm
+++ b/guix/gnu-maintenance.scm
@@ -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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]