diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-13 11:08:43 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-13 11:35:11 +0100 |
commit | 0ea4b896495be47e6403595d8419648f2aae68dc (patch) | |
tree | 1e1106e1d858c4f46be15744aa8834481bec236e /bitbake/lib | |
parent | 76a17c1b5e31d84032a53292064bb02f1dfcc2d7 (diff) | |
download | poky-0ea4b896495be47e6403595d8419648f2aae68dc.tar.gz |
bitbake/git.py: Make sure a full clone checkout always updates
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 8c91de9db1..535f9e5f3a 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py | |||
@@ -105,7 +105,7 @@ class Git(Fetch): | |||
105 | 105 | ||
106 | os.chdir(ud.clonedir) | 106 | os.chdir(ud.clonedir) |
107 | # Remove all but the .git directory | 107 | # Remove all but the .git directory |
108 | if not self._contains_ref(ud.tag, d): | 108 | if not self._contains_ref(ud.tag, d) or 'fullclone' in ud.parm: |
109 | runfetchcmd("rm * -Rf", d) | 109 | runfetchcmd("rm * -Rf", d) |
110 | runfetchcmd("%s fetch %s://%s%s%s %s" % (ud.basecmd, ud.proto, username, ud.host, ud.path, ud.branch), d) | 110 | runfetchcmd("%s fetch %s://%s%s%s %s" % (ud.basecmd, ud.proto, username, ud.host, ud.path, ud.branch), d) |
111 | runfetchcmd("%s fetch --tags %s://%s%s%s" % (ud.basecmd, ud.proto, username, ud.host, ud.path), d) | 111 | runfetchcmd("%s fetch --tags %s://%s%s%s" % (ud.basecmd, ud.proto, username, ud.host, ud.path), d) |