From b9075de5c675a29b3d2447c2b9a38bcca2a86882 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 14 Apr 2014 16:51:25 +0000 Subject: Disable bzr certificate checking --- lorry | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lorry b/lorry index d16abfc..b3e954c 100755 --- a/lorry +++ b/lorry @@ -354,12 +354,15 @@ class Lorry(cliapp.Application): branchdir = os.path.join(bzrdir, branch) if not os.path.exists(branchdir): self.progress('.. doing initial bzr branch') - self.run_program(['bzr', 'branch', '--quiet', address, - branchdir]) + self.run_program( + ['bzr', 'branch', '--quiet', '-Ossl.cert_reqs=none', + address, branchdir]) else: self.progress('.. updating bzr branch') - self.run_program(['bzr', 'pull', '--quiet', address], - cwd=branchdir) + self.run_program( + ['bzr', 'pull', '--quiet', '-Ossl.cert_reqs=none', + address], + cwd=branchdir) exports = {} bzrmarks = os.path.join(gitdir, 'marks.bzr') -- cgit v1.2.1