Prevent SVN checkouts from failing due self signed certs.

This commit is contained in:
Michael DeHaan 2013-02-26 20:23:12 -05:00
parent a851de6f1c
commit fded969870

View file

@ -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: