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