gnu-maintenance: 'latest-ftp-release' ignores "unstable" directories.
authorLudovic Courtès <ludo@gnu.org>
Sun, 17 Dec 2017 15:52:27 +0000 (16:52 +0100)
committerLudovic Courtès <ludo@gnu.org>
Sun, 17 Dec 2017 15:52:27 +0000 (16:52 +0100)
* guix/gnu-maintenance.scm (latest-ftp-release): Filter out "unstable"
directories.

guix/gnu-maintenance.scm

index 00e80bc..c2a7a33 100644 (file)
@@ -366,6 +366,9 @@ return the corresponding signature URL, or #f it signatures are unavailable."
                                    #f)
                                   (("w32" 'directory . _)
                                    #f)
+                                  (("unstable" 'directory . _)
+                                   ;; As seen at ftp.gnupg.org/gcrypt/pinentry.
+                                   #f)
                                   ((directory 'directory . _)
                                    directory)
                                   (_ #f))