mirror of
https://git.yoctoproject.org/poky
synced 2026-03-16 04:09:39 +01:00
bitbake git.py: Always use tag param from URI if specified
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2791 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -51,7 +51,7 @@ class Git(Fetch):
|
||||
ud.proto = ud.parm['protocol']
|
||||
|
||||
tag = data.getVar("SRCREV", d, 0)
|
||||
if 'tag' in ud.parm and len(ud.parm['tag']) == 40:
|
||||
if 'tag' in ud.parm:
|
||||
ud.tag = ud.parm['tag']
|
||||
elif tag and "get_srcrev" not in tag and len(tag) == 40:
|
||||
ud.tag = tag
|
||||
|
||||
Reference in New Issue
Block a user