chiark / gitweb /
Fix issue introduced in 49549f4cad2097 (fixes #62)
authorDaniel Martí <mvdan@mvdan.cc>
Tue, 13 Jan 2015 15:15:11 +0000 (16:15 +0100)
committerDaniel Martí <mvdan@mvdan.cc>
Tue, 13 Jan 2015 15:15:11 +0000 (16:15 +0100)
fdroidserver/common.py

index 189ffbd4a4360f6700ae527163698b378249ce5f..a54a8dcffbf2f77bb94b2cc51bccabda500949a4 100644 (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