diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-02 17:46:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-02 17:46:37 +0000 |
commit | adfa6c40dadebb18bfd457859300d8c093b007f7 (patch) | |
tree | f8ddd85e3258a37af582c76ea9b6d65a5d8067db /bitbake/lib/bb | |
parent | 43addfd01d97fe327b62ad000dccccfb6185fabe (diff) | |
download | openembedded-core-adfa6c40dadebb18bfd457859300d8c093b007f7.tar.gz openembedded-core-adfa6c40dadebb18bfd457859300d8c093b007f7.tar.bz2 openembedded-core-adfa6c40dadebb18bfd457859300d8c093b007f7.tar.xz openembedded-core-adfa6c40dadebb18bfd457859300d8c093b007f7.zip |
bitbake/fetch2/git: Ensure target directory exists when copying files
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-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) |