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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 4e46ec8f30..61fdc4b05e 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -214,6 +214,7 @@ class Git(FetchMethod):
214 os.chdir(ud.clonedir) 214 os.chdir(ud.clonedir)
215 logger.info("Creating tarball of git repository") 215 logger.info("Creating tarball of git repository")
216 runfetchcmd("tar -czf %s %s" % (ud.fullmirror, os.path.join(".") ), d) 216 runfetchcmd("tar -czf %s %s" % (ud.fullmirror, os.path.join(".") ), d)
217 runfetchcmd("touch %s.done" % (ud.fullmirror), d)
217 218
218 def unpack(self, ud, destdir, d): 219 def unpack(self, ud, destdir, d):
219 """ unpack the downloaded src to destdir""" 220 """ unpack the downloaded src to destdir"""