diff options
-rw-r--r-- | guix/import/github.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guix/import/github.scm b/guix/import/github.scm index cdac70420a..c8d3b744a9 100644 --- a/guix/import/github.scm +++ b/guix/import/github.scm @@ -189,6 +189,9 @@ the package e.g. 'bedtools2'. Return #f if there is no releases" ;; where some are just the version number ((string-prefix? "v" tag) (substring tag 1)) + ;; Support release_n tags + ((string-prefix? "release_" tag) + tag) ;; Finally, reject tags that don't start with a digit: ;; they may not represent a release. ((and (not (string-null? tag)) |