aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/bb/fetch2/git.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py
index 2643cda78..45bdec055 100644
--- a/lib/bb/fetch2/git.py
+++ b/lib/bb/fetch2/git.py
@@ -399,9 +399,8 @@ class Git(FetchMethod):
return ud.revisions[name]
def checkstatus(self, ud, d):
- fetchcmd = "%s ls-remote %s" % (ud.basecmd, ud.url)
try:
- runfetchcmd(fetchcmd, d, quiet=True)
+ self._lsremote(ud, d, "")
return True
except FetchError:
return False