mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Fix issue introduced in 49549f4cad (fixes #62)
This commit is contained in:
parent
24aaa568da
commit
ff2b061351
1 changed files with 1 additions and 1 deletions
|
|
@ -670,7 +670,7 @@ class vcs_gitsvn(vcs):
|
|||
self.clone_failed = True
|
||||
raise VCSException("Git svn clone failed", p.output)
|
||||
else:
|
||||
gitsvn_args.extend([remote_split[0], self.local])
|
||||
gitsvn_args.extend([self.remote, self.local])
|
||||
p = FDroidPopen(gitsvn_args, output=False)
|
||||
if p.returncode != 0:
|
||||
self.clone_failed = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue