mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 02:50:12 +01:00
git-svn: use '--' to isolate user input in command lines
This commit is contained in:
parent
1626655879
commit
c67ed5e85f
@ -975,6 +975,7 @@ class vcs_gitsvn(vcs):
|
||||
if not os.path.exists(self.local):
|
||||
# Brand new checkout
|
||||
gitsvn_args = ['svn', 'clone']
|
||||
remote = None
|
||||
if ';' in self.remote:
|
||||
remote_split = self.remote.split(';')
|
||||
for i in remote_split[1:]:
|
||||
@ -984,17 +985,15 @@ class vcs_gitsvn(vcs):
|
||||
gitsvn_args.extend(['-t', i[5:]])
|
||||
elif i.startswith('branches='):
|
||||
gitsvn_args.extend(['-b', i[9:]])
|
||||
gitsvn_args.extend([remote_split[0], self.local])
|
||||
p = self.git(gitsvn_args, output=False)
|
||||
if p.returncode != 0:
|
||||
self.clone_failed = True
|
||||
raise VCSException("Git svn clone failed", p.output)
|
||||
remote = remote_split[0]
|
||||
else:
|
||||
gitsvn_args.extend([self.remote, self.local])
|
||||
p = self.git(gitsvn_args, output=False)
|
||||
if p.returncode != 0:
|
||||
self.clone_failed = True
|
||||
raise VCSException("Git svn clone failed", p.output)
|
||||
remote = self.remote
|
||||
|
||||
gitsvn_args.extend(['--', remote, self.local])
|
||||
p = self.git(gitsvn_args)
|
||||
if p.returncode != 0:
|
||||
self.clone_failed = True
|
||||
raise VCSException(_('git svn clone failed'), p.output)
|
||||
self.checkrepo()
|
||||
else:
|
||||
self.checkrepo()
|
||||
|
Loading…
Reference in New Issue
Block a user