From 572a231649ca045a7fb0c97c88cb03b09036f5d6 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Thu, 4 Apr 2013 09:11:43 +0100 Subject: Add --insecure to hg calls --- lorry | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lorry b/lorry index 610a218..bc58d83 100755 --- a/lorry +++ b/lorry @@ -414,10 +414,10 @@ class Lorry(cliapp.Application): hgdir = os.path.join(dirname, 'hg') if os.path.exists(hgdir): self.progress('.. updating hg branch') - self.run_program(['hg', 'pull', '--quiet'], cwd=hgdir) + self.run_program(['hg', 'pull', '--quiet', '--insecure'], cwd=hgdir) else: self.progress('.. doing initial hg branch') - self.run_program(['hg', 'clone', '--quiet', spec['url'], hgdir]) + self.run_program(['hg', 'clone', '--quiet', '--insecure', spec['url'], hgdir]) if not os.path.exists(gitdir): self.needs_aggressive = True -- cgit v1.2.1