summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlorry4
1 files 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