summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch/git.py6
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):
86 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) 86 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile)
87 87
88 def forcefetch(self, url, ud, d): 88 def forcefetch(self, url, ud, d):
89 if not self._contains_ref(ud.tag, d) or 'fullclone' in ud.parm: 89 if 'fullclone' in ud.parm:
90 return True
91 if os.path.exists(self.localpath(url, ud, d)):
92 return False
93 if not self._contains_ref(ud.tag, d):
90 return True 94 return True
91 return False 95 return False
92 96