summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch/git.py')
-rw-r--r--bitbake/lib/bb/fetch/git.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py
index 535f9e5f3a..e77d2a5b91 100644
--- a/bitbake/lib/bb/fetch/git.py
+++ b/bitbake/lib/bb/fetch/git.py
@@ -79,6 +79,10 @@ class Git(Fetch):
79 79
80 ud.basecmd = data.getVar("FETCHCMD_git", d, True) or "git" 80 ud.basecmd = data.getVar("FETCHCMD_git", d, True) or "git"
81 81
82 if 'noclone' in ud.parm:
83 ud.localfile = None
84 return None
85
82 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) 86 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile)
83 87
84 def go(self, loc, ud, d): 88 def go(self, loc, ud, d):