mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-05-02 12:55:08 -04:00
When fetching tags in git, get rid of removed ones
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user