diff options
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 31fd8a7206..706fff5691 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -374,7 +374,7 @@ class Git(FetchMethod): | |||
374 | verstring = "" | 374 | verstring = "" |
375 | tagregex = re.compile(d.getVar('GITTAGREGEX', True) or "(?P<pver>([0-9][\.|_]?)+)") | 375 | tagregex = re.compile(d.getVar('GITTAGREGEX', True) or "(?P<pver>([0-9][\.|_]?)+)") |
376 | try: | 376 | try: |
377 | output = self._lsremote(ud, d, "refs/tags/*^{}") | 377 | output = self._lsremote(ud, d, "refs/tags/*") |
378 | except bb.fetch2.FetchError or bb.fetch2.NetworkAccess: | 378 | except bb.fetch2.FetchError or bb.fetch2.NetworkAccess: |
379 | return "" | 379 | return "" |
380 | 380 | ||