mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Fix git-svn find-rev, also search for svn revisions after HEAD
This commit is contained in:
parent
c1020ca38f
commit
e35a1093cd
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ class vcs_gitsvn(vcs):
|
|||
else:
|
||||
# No tag found, normal svn rev translation
|
||||
# Translate svn rev into git format
|
||||
p = subprocess.Popen(['git', 'svn', 'find-rev', 'r' + rev],
|
||||
p = subprocess.Popen(['git', 'svn', 'find-rev', 'r' + rev, '--before'],
|
||||
cwd=self.local, stdout=subprocess.PIPE)
|
||||
git_rev = p.communicate()[0].rstrip()
|
||||
if p.returncode != 0 or len(git_rev) == 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue