gnu-maintenance: ".sign" and ".asc" files no longer match 'release-file?'.
* guix/gnu-maintenance.scm (release-file?): Exclude ".sign" and ".asc" file in addition to ".sig".
This commit is contained in:
parent
37ebc19cfb
commit
bc1ff4aaba
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ network to check in GNU's database."
|
||||||
(define (release-file? project file)
|
(define (release-file? project file)
|
||||||
"Return #f if FILE is not a release tarball of PROJECT, otherwise return
|
"Return #f if FILE is not a release tarball of PROJECT, otherwise return
|
||||||
true."
|
true."
|
||||||
(and (not (string-suffix? ".sig" file))
|
(and (not (member (file-extension file) '("sig" "sign" "asc")))
|
||||||
(and=> (regexp-exec %tarball-rx file)
|
(and=> (regexp-exec %tarball-rx file)
|
||||||
(lambda (match)
|
(lambda (match)
|
||||||
;; Filter out unrelated files, like `guile-www-1.1.1'.
|
;; Filter out unrelated files, like `guile-www-1.1.1'.
|
||||||
|
|
Reference in a new issue