diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch/git.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 58ffdd1ec1..449f1e4dba 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py @@ -86,7 +86,11 @@ class Git(Fetch): return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) def forcefetch(self, url, ud, d): - if not self._contains_ref(ud.tag, d) or 'fullclone' in ud.parm: + if 'fullclone' in ud.parm: + return True + if os.path.exists(self.localpath(url, ud, d)): + return False + if not self._contains_ref(ud.tag, d): return True return False |