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 b59a7cdc84..21ef85a2ae 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -389,7 +389,7 @@ class Git(FetchMethod):
389 tmpdir = tempfile.mkdtemp(dir=d.getVar('DL_DIR')) 389 tmpdir = tempfile.mkdtemp(dir=d.getVar('DL_DIR'))
390 try: 390 try:
391 # Do the checkout. This implicitly involves a Git LFS fetch. 391 # Do the checkout. This implicitly involves a Git LFS fetch.
392 self.unpack(ud, tmpdir, d) 392 Git.unpack(self, ud, tmpdir, d)
393 393
394 # Scoop up a copy of any stuff that Git LFS downloaded. Merge them into 394 # Scoop up a copy of any stuff that Git LFS downloaded. Merge them into
395 # the bare clonedir. 395 # the bare clonedir.