mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Fix possible git-svn bug
This commit is contained in:
parent
6855b6c442
commit
61a61824d4
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ class vcs_gitsvn(vcs):
|
||||||
raise VCSException("Git clean failed")
|
raise VCSException("Git clean failed")
|
||||||
if not self.refreshed:
|
if not self.refreshed:
|
||||||
# Get new commits and tags from repo...
|
# Get new commits and tags from repo...
|
||||||
if subprocess.call(['%sgit svn rebase %s' % self.userargs()],
|
if subprocess.call(['git svn rebase %s' % self.userargs()],
|
||||||
cwd=self.local, shell=True) != 0:
|
cwd=self.local, shell=True) != 0:
|
||||||
raise VCSException("Git svn rebase failed")
|
raise VCSException("Git svn rebase failed")
|
||||||
self.refreshed = True
|
self.refreshed = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue