1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

bb.fetch2: rename "go" with "download" to better reflect its functionality

no functional change

Signed-off-by: Yu Ke <ke.yu@intel.com>
This commit is contained in:
Yu Ke
2011-01-18 23:03:53 +08:00
committed by Richard Purdie
parent 8615b0e282
commit e05918937c
13 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -106,7 +106,7 @@ class Git(Fetch):
return True
def go(self, loc, ud, d):
def download(self, loc, ud, d):
"""Fetch url"""
if ud.user:
@@ -242,7 +242,7 @@ class Git(Fetch):
if not os.path.exists(ud.clonedir):
print("no repo")
self.go(None, ud, d)
self.download(None, ud, d)
if not os.path.exists(ud.clonedir):
logger.error("GIT repository for %s doesn't exist in %s, cannot get sortable buildnumber, using old value", url, ud.clonedir)
return None
@@ -250,7 +250,7 @@ class Git(Fetch):
os.chdir(ud.clonedir)
if not self._contains_ref(rev, d):
self.go(None, ud, d)
self.download(None, ud, d)
output = runfetchcmd("%s rev-list %s -- 2> /dev/null | wc -l" % (ud.basecmd, rev), d, quiet=True)
os.chdir(cwd)