summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 3e25b4b604..5e65c83c63 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -398,7 +398,7 @@ class Git(FetchMethod):
398 tmpdir = tempfile.mkdtemp(dir=d.getVar('DL_DIR')) 398 tmpdir = tempfile.mkdtemp(dir=d.getVar('DL_DIR'))
399 try: 399 try:
400 # Do the checkout. This implicitly involves a Git LFS fetch. 400 # Do the checkout. This implicitly involves a Git LFS fetch.
401 self.unpack(ud, tmpdir, d) 401 Git.unpack(self, ud, tmpdir, d)
402 402
403 # Scoop up a copy of any stuff that Git LFS downloaded. Merge them into 403 # Scoop up a copy of any stuff that Git LFS downloaded. Merge them into
404 # the bare clonedir. 404 # the bare clonedir.