mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 02:50:12 +01:00
Don't add an extra space to git svn clone
This commit is contained in:
parent
d7ca28bbbe
commit
67d75e550b
@ -372,7 +372,7 @@ class vcs_gitsvn(vcs):
|
|||||||
def userargs(self):
|
def userargs(self):
|
||||||
if self.username is None:
|
if self.username is None:
|
||||||
return ('', '')
|
return ('', '')
|
||||||
return ('echo "%s" | DISPLAY="" ' % self.password, '--username "%s"' % self.username)
|
return ('echo "%s" | DISPLAY="" ' % self.password, ' --username "%s"' % self.username)
|
||||||
|
|
||||||
# If the local directory exists, but is somehow not a git repository, git
|
# If the local directory exists, but is somehow not a git repository, git
|
||||||
# will traverse up the directory tree until it finds one that is (i.e.
|
# will traverse up the directory tree until it finds one that is (i.e.
|
||||||
@ -387,7 +387,7 @@ class vcs_gitsvn(vcs):
|
|||||||
def gotorevisionx(self, rev):
|
def gotorevisionx(self, rev):
|
||||||
if not os.path.exists(self.local):
|
if not os.path.exists(self.local):
|
||||||
# Brand new checkout
|
# Brand new checkout
|
||||||
gitsvn_cmd = '%sgit svn clone %s' % self.userargs()
|
gitsvn_cmd = '%sgit svn clone%s' % self.userargs()
|
||||||
if ';' in self.remote:
|
if ';' in self.remote:
|
||||||
remote_split = self.remote.split(';')
|
remote_split = self.remote.split(';')
|
||||||
for i in remote_split[1:]:
|
for i in remote_split[1:]:
|
||||||
|
Loading…
Reference in New Issue
Block a user