commit:     08aa7c8e5c5add6922816f8354669be87351630c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 26 13:18:16 2015 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Nov 29 10:03:17 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08aa7c8e

git-r3.eclass: Accept any ref rather than refs/heads/* only

Fixes: https://bugs.gentoo.org/show_bug.cgi?id=556822

 eclass/git-r3.eclass | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass
index faee458..8b5ffd5 100644
--- a/eclass/git-r3.eclass
+++ b/eclass/git-r3.eclass
@@ -581,8 +581,8 @@ git-r3_fetch() {
                        if [[ ${remote_ref} == HEAD ]]; then
                                # HEAD
                                fetch_l=HEAD
-                       elif [[ ${remote_ref} == refs/heads/* ]]; then
-                               # regular branch
+                       elif [[ ${remote_ref} == refs/* ]]; then
+                               # regular branch, tag or some other explicit ref
                                fetch_l=${remote_ref}
                        else
                                # tag or commit id...
@@ -919,7 +919,7 @@ git-r3_peek_remote_ref() {
                einfo "Peeking \e[1m${remote_ref}\e[22m on \e[1m${r}\e[22m ..." 
>&2
 
                local lookup_ref
-               if [[ ${remote_ref} == refs/heads/* || ${remote_ref} == HEAD ]]
+               if [[ ${remote_ref} == refs/* || ${remote_ref} == HEAD ]]
                then
                        lookup_ref=${remote_ref}
                else

Reply via email to