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