From c5d50d13d1504e4b96a68580b26cda0ddaacdcda Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Tue, 19 Apr 2016 15:07:23 +0200 Subject: [PATCH] prepare.py: fix tunnel clone --- prepare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.py b/prepare.py index b8167943a..28494037e 100755 --- a/prepare.py +++ b/prepare.py @@ -493,7 +493,7 @@ def main(argv=None): if args.tunnel: if not os.path.isdir("submodules/tunnel"): info("Tunnel wanted but not found yet, trying to clone it...") - p = Popen("git submodule add gitosis@git.linphone.org:tunnel.git submodules/tunnel".split(" ")) + p = Popen("git submodule add -f gitosis@git.linphone.org:tunnel.git submodules/tunnel".split(" ")) p.wait() if p.returncode != 0: error("Could not clone tunnel. Please see http://www.belledonne-communications.com/voiptunnel.html")