diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index c54d826a0..d396d2458 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -156,6 +156,7 @@ class Git(Fetch): runfetchcmd("git clone -s -n %s %s" % (ud.clonedir, destdir), d) if os.path.exists("%s/.git/refs/remotes/origin" % ud.clonedir): + bb.mkdirhier("%s/.git/refs/remotes/origin/" % destdir) runfetchcmd("cp -af %s/.git/refs/remotes/origin/* %s/.git/refs/remotes/origin/" %(ud.clonedir, destdir), d) if os.path.exists("%s/.git/packed-refs" % ud.clonedir): runfetchcmd("cp -af %s/.git/packed-refs %s/.git/" %(ud.clonedir, destdir), d) |