Prevent SVN checkouts from failing due self signed certs.
This commit is contained in:
parent
9f083bfca3
commit
0e1ba5e676
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ class Subversion(object):
|
||||||
self.password = password
|
self.password = password
|
||||||
|
|
||||||
def _exec(self, args):
|
def _exec(self, args):
|
||||||
bits = ["svn --non-interactive --no-auth-cache", ]
|
bits = ["svn --non-interactive --trust-server-cert --no-auth-cache", ]
|
||||||
if self.username:
|
if self.username:
|
||||||
bits.append("--username '%s'" % self.username)
|
bits.append("--username '%s'" % self.username)
|
||||||
if self.password:
|
if self.password:
|
||||||
|
|
Loading…
Reference in a new issue