1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

Forgot to remove "trunk" in git-svn checkout

This commit is contained in:
Daniel Martí 2013-05-28 16:36:52 +02:00
parent 86cff4e49c
commit 5d36f41c3f

View File

@ -245,9 +245,8 @@ class vcs_gitsvn(vcs):
cwd=self.local, stdout=subprocess.PIPE)
rev = p.communicate()[0].rstrip()
if p.returncode != 0 or len(rev) == 0:
# If it's not a svn rev, do a normal git checkout (master,
# trunk, raw git sha, etc)
if subprocess.call(['git', 'checkout', 'trunk'], cwd=self.local) != 0:
# Try a plain git checkout as a last resort
if subprocess.call(['git', 'checkout', rev], cwd=self.local) != 0:
raise VCSException("No git treeish found and direct git checkout failed")
# Check out the appropriate git revision...
if subprocess.call(['git', 'checkout', rev], cwd=self.local) != 0: