summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r--bitbake/lib/bb/fetch2/git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index e1e876535f..e4202323c4 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -291,8 +291,8 @@ class Git(FetchMethod):
291 os.unlink(ud.fullmirror) 291 os.unlink(ud.fullmirror)
292 292
293 logger.info("Creating tarball of git repository") 293 logger.info("Creating tarball of git repository")
294 runfetchcmd("tar -czf %s %s" % (ud.fullmirror, os.path.join(".") ), d, workdir=ud.clonedir) 294 runfetchcmd("tar -czf %s ." % ud.fullmirror, d, workdir=ud.clonedir)
295 runfetchcmd("touch %s.done" % ud.fullmirror, d, workdir=ud.clonedir) 295 runfetchcmd("touch %s.done" % ud.fullmirror, d)
296 296
297 def unpack(self, ud, destdir, d): 297 def unpack(self, ud, destdir, d):
298 """ unpack the downloaded src to destdir""" 298 """ unpack the downloaded src to destdir"""