Commit 0e1ba5e6 by Michael DeHaan

Prevent SVN checkouts from failing due self signed certs.

parent 9f083bfc
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment