1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00
This commit is contained in:
Ciaran Gultnieks 2012-02-05 13:52:33 +00:00
parent 7cae89e52a
commit 2f7206bf2e

View File

@ -208,7 +208,7 @@ class vcs_svn(vcs):
self.userargs(), cwd=self.local) != 0:
raise VCSException("Svn update failed")
self.refreshed = True
if ref:
if rev:
revargs = ['-r', rev]
if subprocess.call(['svn', 'update', '--force'] + revargs +
self.userargs(), cwd=self.local) != 0: