chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc804e6
)
Revert "Fix git-svn find-rev, also search for svn revisions after HEAD"
author
Daniel Martí
<mvdan@mvdan.cc>
Mon, 4 Nov 2013 09:43:28 +0000
(10:43 +0100)
committer
Daniel Martí
<mvdan@mvdan.cc>
Mon, 4 Nov 2013 09:43:28 +0000
(10:43 +0100)
This reverts commit
e35a1093cd8b659ab5fd187056c3867a5ce3819b
.
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index 9e3ca99c402ebaead66ad0284640ee6be27512a4..28f8543703e6f1717a4fd44523a313d89df40d18 100644
(file)
--- a/
fdroidserver/common.py
+++ b/
fdroidserver/common.py
@@
-315,7
+315,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
, '--before'
],
+ p = subprocess.Popen(['git', 'svn', 'find-rev', 'r' + rev],
cwd=self.local, stdout=subprocess.PIPE)
git_rev = p.communicate()[0].rstrip()
if p.returncode != 0 or len(git_rev) == 0: