1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Fix issue introduced in 49549f4cad (fixes #62)

This commit is contained in:
Daniel Martí 2015-01-13 16:15:11 +01:00
parent 24aaa568da
commit ff2b061351

View File

@ -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