summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r--bitbake/lib/bb/fetch2/git.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 8386ecca02..a78e4519e2 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -81,6 +81,9 @@ class Git(FetchMethod):
81 return ud.clonedir 81 return ud.clonedir
82 82
83 def forcefetch(self, url, ud, d): 83 def forcefetch(self, url, ud, d):
84 if not os.path.exists(ud.clonedir):
85 return True
86 os.chdir(ud.clonedir)
84 for name in ud.names: 87 for name in ud.names:
85 if not self._contains_ref(ud.revisions[name], d): 88 if not self._contains_ref(ud.revisions[name], d):
86 return True 89 return True