diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-02-09 14:30:29 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-10 23:49:25 +0000 |
commit | 14dea89521c0c648e8e543388096a6dcd6d4f2e0 (patch) | |
tree | ddb73f19d8eeaa659905968ee1de28b9750b5628 /bitbake/lib/bb/fetch2/git.py | |
parent | f1bbea4ab0c41cf93cd1a2d0d4d05a4ad06a0728 (diff) | |
download | poky-14dea89521c0c648e8e543388096a6dcd6d4f2e0.tar.gz |
fetch2: Correct the clean() mechanism for the fetcher2 code
This create a clean() method in each of the fetcher modules
and correctly cleans the .done stamp file and lock files
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 6d99406777..6d82bdc88b 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -172,6 +172,12 @@ class Git(FetchMethod): | |||
172 | runfetchcmd("%s checkout-index -q -f -a" % ud.basecmd, d) | 172 | runfetchcmd("%s checkout-index -q -f -a" % ud.basecmd, d) |
173 | return True | 173 | return True |
174 | 174 | ||
175 | def clean(self, ud, d): | ||
176 | """ clean the git directory """ | ||
177 | |||
178 | bb.utils.remove(ud.localpath, True) | ||
179 | bb.utils.remove(ud.fullmirror) | ||
180 | |||
175 | def supports_srcrev(self): | 181 | def supports_srcrev(self): |
176 | return True | 182 | return True |
177 | 183 | ||