mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
When fetching tags in git, get rid of removed ones
This commit is contained in:
parent
41c522319b
commit
da2bb11580
@ -346,7 +346,7 @@ class vcs_git(vcs):
|
||||
if subprocess.call(['git', 'fetch', 'origin'],
|
||||
cwd=self.local) != 0:
|
||||
raise VCSException("Git fetch failed")
|
||||
if subprocess.call(['git', 'fetch', '--tags', 'origin'],
|
||||
if subprocess.call(['git', 'fetch', '--prune', '--tags', 'origin'],
|
||||
cwd=self.local) != 0:
|
||||
raise VCSException("Git fetch failed")
|
||||
self.refreshed = True
|
||||
|
Loading…
Reference in New Issue
Block a user