mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Forgot to remove "trunk" in git-svn checkout
This commit is contained in:
parent
86cff4e49c
commit
5d36f41c3f
1 changed files with 2 additions and 3 deletions
|
@ -245,9 +245,8 @@ class vcs_gitsvn(vcs):
|
||||||
cwd=self.local, stdout=subprocess.PIPE)
|
cwd=self.local, stdout=subprocess.PIPE)
|
||||||
rev = p.communicate()[0].rstrip()
|
rev = p.communicate()[0].rstrip()
|
||||||
if p.returncode != 0 or len(rev) == 0:
|
if p.returncode != 0 or len(rev) == 0:
|
||||||
# If it's not a svn rev, do a normal git checkout (master,
|
# Try a plain git checkout as a last resort
|
||||||
# trunk, raw git sha, etc)
|
if subprocess.call(['git', 'checkout', rev], cwd=self.local) != 0:
|
||||||
if subprocess.call(['git', 'checkout', 'trunk'], cwd=self.local) != 0:
|
|
||||||
raise VCSException("No git treeish found and direct git checkout failed")
|
raise VCSException("No git treeish found and direct git checkout failed")
|
||||||
# Check out the appropriate git revision...
|
# Check out the appropriate git revision...
|
||||||
if subprocess.call(['git', 'checkout', rev], cwd=self.local) != 0:
|
if subprocess.call(['git', 'checkout', rev], cwd=self.local) != 0:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue